|
POST
|
Yes the service seems to be down, but it could be a result of your ArcGIS Server instance not running - check on the hosting server that the ArcGIS Server process is running. You can change the level of logging as described here: About specifying server log settings—ArcGIS Server Administration (Linux) | ArcGIS Enterprise Log codes are here: Log codes overview—ArcGIS Server Administration (Linux) | ArcGIS Enterprise
... View more
01-25-2017
01:17 AM
|
1
|
4
|
1630
|
|
POST
|
No implementation of the 3.19 equivalent disableRubberBandZoom() | ArcGIS API for JavaScript 3.19
... View more
01-24-2017
10:20 PM
|
1
|
0
|
1929
|
|
POST
|
This approach will work best. I would just change "sum of the binaries" to "product of the binaries" - then it is either 1 or 0.
... View more
01-24-2017
10:11 PM
|
0
|
0
|
2710
|
|
POST
|
The HTTP resource is considered insecure. Here is the message from the browser console when loading a service from a HTTP source. The page at 'https://developers.arcgis.com/javascript/latest/sample-code/sandbox/index.html?sample=symbols-points-3d' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://myserver/arcgis/rest/info?f=json'. This request has been blocked; the content must be served over HTTPS.
... View more
01-24-2017
10:01 PM
|
0
|
0
|
1513
|
|
POST
|
I've tested the Sandbox code with my own layers and it works - the source layer must originate from a HTTPS resource though.
... View more
01-24-2017
05:41 AM
|
0
|
0
|
1513
|
|
POST
|
So your issue is with the regional settings of the OS for decimal number notation. You can detect what format the user's OS is showing floats with locale.localeconv()['decimal_point']
... View more
01-24-2017
04:08 AM
|
1
|
0
|
3818
|
|
POST
|
Your decimals should be in point notation (12.3456) and not comma notation (12,3456), then the Python code works.
... View more
01-24-2017
03:13 AM
|
0
|
2
|
3818
|
|
POST
|
And let's tag the developer alaframboise-esristaff
... View more
01-24-2017
02:38 AM
|
0
|
0
|
2737
|
|
POST
|
Hi Marc, how are you updating the query? I've only found that it can be done by setting the private attribute "_where" like for a layer definition query and then the cluster graphics layer does not respond to the redraw() function like it should but updates on a map extent change event. It also does not want to respond to setting the layer definition query back to the original where clause.
... View more
01-24-2017
02:24 AM
|
0
|
3
|
2737
|
|
POST
|
point = arcpy.GetParameter(0)
coords = str(point).split(' ')
x = coords[0]
y = coords[1]
arcpy.AddMessage(x)
arcpy.AddMessage(y)
... View more
01-24-2017
02:15 AM
|
0
|
4
|
3818
|
|
POST
|
It leaves the question of how your point object is defined? Is it a string? Please provide more information on the tool.
... View more
01-24-2017
02:00 AM
|
0
|
6
|
3818
|
|
POST
|
If you are using the 3.19 API, have a look at WebTiledLayer | API Reference | ArcGIS API for JavaScript 3.19 with a nice example here: ArcGIS API for JavaScript Sandbox
... View more
01-24-2017
12:30 AM
|
1
|
0
|
1823
|
|
POST
|
I think your problem lies in line 161 where you are defining the delete table - you are using the same syntax as for the TableToTable conversion tool, which is incorrect. I believe it should be countyTable = "gis_data.gdb/" + proj_prefix + "_ca_counties"
... View more
01-24-2017
12:20 AM
|
1
|
1
|
4558
|
|
POST
|
To get the field value use val = row.getValue(FieldName). If you want to print the location value for each point, make sure the print statement is inside the for loop. cursor = arcpy.SearchCursor(inputTable)
for row in cursor:
location = row.getValue('Location')
xCoord = row.getValue('Long')
yCoord = row.getValue('Lat')
print location
print xCoord
print yCoord
... View more
01-24-2017
12:10 AM
|
1
|
0
|
2493
|
|
POST
|
Have a look at this help description: http://pro.arcgis.com/en/pro-app/arcpy/classes/point.htm Then to read the geometry: point = arcpy.GetParameter(0)
ptGeometry = arcpy.PointGeometry(point)
x = ptGeometry.X
y = ptGeometry.Y
... View more
01-23-2017
11:57 PM
|
0
|
8
|
3818
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-22-2024 12:37 AM | |
| 1 | 10-02-2025 10:28 AM | |
| 1 | 09-17-2024 12:29 AM | |
| 1 | 03-15-2024 11:33 AM | |
| 1 | 03-13-2024 11:20 PM |
| Online Status |
Offline
|
| Date Last Visited |
4 weeks ago
|