POST
|
Hello, No luck on this. I far as I know there is no possibility of get this webmap_as_json directly from the API as You can do in javascript.
... View more
11-04-2020
11:06 PM
|
0
|
0
|
236
|
POST
|
Hello, Is it possible to install 2 different Oracle clients (both 64bits) in the server where ArcGIS Server is installed? I need to create ArcGIS Server services that use data in 2 different versions of Oracle. I installed the client for the latest version of Oracle, but this client doesn't work with the other database which is in older version. The newest version (18c) is a geodatabase but the other one (9i) is just a plain database with tabular data. There is no possibility of create a dblink. Any help would be appreciated. thanks!
... View more
10-28-2020
11:41 PM
|
0
|
0
|
119
|
POST
|
Hello! I need to configure an ArcGIS Server and ArcGIS DataStore in HA active passive mode. I understand how to configure ArcGIS Server, in 2 independent servers following the indications in this link: Single-machine high-availability (active-passive) deployment—ArcGIS Enterprise | Documentation for ArcGIS Enterprise but I'm really confused when I try to understand how to add an ArcGIS Data Store to this deploy, using the same HA active passive configuration. There is no indication in the link added above related to arcgis datastore and I don't know how to implement this. It seems that the standard configuration to deploy a failover datastore: Add a machine to your data store—Portal for ArcGIS | Documentation for ArcGIS Enterprise is no valid for an active passive arcgis server. How I can deploy an ArcGIS Datastore with automatic replication in this scenario? thanks in advance!
... View more
10-20-2020
08:05 AM
|
0
|
1
|
117
|
IDEA
|
Equivalent to ToUTC() is another function called ToLocal()
... View more
12-04-2019
07:30 AM
|
0
|
0
|
129
|
IDEA
|
Hello, Another option is to use Arcade expressions to change to UTC. I have done it today ( ) and works fine! ToUTC($feature["FECHA_FICHERO"]) Also I have formatted the date to show it as the customer wants (I work at Esri Spain): Day(ToUTC($feature["FECHA_FICHERO"])) + "/" + Month(ToUTC($feature["FECHA_FICHERO"])) + "/" + Year(ToUTC($feature["FECHA_FICHERO"])) + " " + Hour(ToUTC($feature["FECHA_FICHERO"])) + ":" + IIf(Minute(ToUTC($feature["FECHA_FICHERO"])) > 9, Minute(ToUTC($feature["FECHA_FICHERO"])), "0"+ Minute(ToUTC($feature["FECHA_FICHERO"]))) regards!
... View more
12-04-2019
07:29 AM
|
1
|
0
|
129
|
POST
|
Thanks for the answer. ArcGIS Online assistant is a very useful app but it's not the answer to my problem. export_map needs a representation of the state of a webmap, not the definition of the webmap which is the json I should get from ArcGIS Online. This json is easy to obtain in other APIs, such as javascript, but it seems to be not available in python.
... View more
12-18-2018
10:49 PM
|
0
|
2
|
236
|
POST
|
Hello, We are developing a process to send an email with a map showing the location in case of emergency. arcgis.mapping.export_map method request a map to the printing service configured in your organization. So it's the perfect method for us. THe problem is where to get de json that represents the state of the MapView (zoom, layer´s visibility...) #cosa = "{\"mapOptions\":{......" #where to get webmap_as_json ?? out = arcgis . mapping . export_map ( cosa , "PNG8" , "MAP_ONLY" , gis = gis ) out There is no an explicit method to obtain the 'webmap_as_json' variable which is the format that demands Printing service behind. This is the specification of the json format: ExportWebMap specification—Documentation (10.5) | ArcGIS Enterprise is there any chance of getting it? I did it on javascript, but i cannot find anything similar for python. thanks for the help!
... View more
12-18-2018
05:30 AM
|
0
|
5
|
625
|
POST
|
Thank you! But It's not what I need. I have 300 fields (I didn't prepare that data... ) and I want to avoid to create 300 arcade expressions. My idea is to generate only one containing all HTML code needed. I automate arcade expression creation in an excel and then load it into the webmap configuration. That's why i need the posibility of inject HTML through arcade expressions... It would be nice to have a possibility to automate creation of arcade expressions...
... View more
11-28-2018
11:56 PM
|
3
|
2
|
138
|
POST
|
Hello, I have the same need. In my case I want to check what fields are not empty in order to show only those. I want to use only one arcade expression, where I evaluate all fields and return a table to draw. But the only thing I obtain is the html code written in the popup window. My arcade code is something like this: Concatenate([ IIf(IsEmpty($feature["name0"]), "", Concatenate(["<tr><td>name0:</td> <tr> ",$feature["name0"]," </tr> "],"")) ,IIf(IsEmpty($feature["name1"]), "", Concatenate(["<tr><td>name1: </td><tr> ",$feature["name1"]," </tr> "],"")) ,IIf(IsEmpty($feature["name2"]), "", Concatenate(["<tr><td>name2: </td><tr> ",$feature["name2"]," </tr> "],"")) ,IIf(IsEmpty($feature["name3"]), "", Concatenate(["<tr><td>name3: </td><tr> ",$feature["name3"]," </tr> "],"")) ...... ..... ..... ...... ],"") The alternative is to customize popup window programmaticaly, but I'd prefer to store this behaviour on the webmap. Hope this will be available soon....
... View more
11-28-2018
09:14 AM
|
0
|
4
|
229
|
POST
|
Thank you, Jonathan! Finally I fixed it configuring the IIS certificate (valid server certificate) in server and portal. I mean, not only installing it but configuring it as active certificate in both.
... View more
08-23-2018
11:49 PM
|
0
|
0
|
44
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:25 AM
|