|
POST
|
If you have a enhancement request, you can post it on the ideas site of Esri. There are several related to Collector: http://ideas.arcgis.com/apex/ideaSearchResults?s=Collector&searchButton=search If your request is not already listed you can add it. After creating the idea, post the link in this thread to gain more support for your idea. Esri is constantly looking at these ideas. And those that have a lot of votes may be included in a next release. Kind regards, Xander
... View more
11-17-2014
06:01 PM
|
0
|
0
|
800
|
|
POST
|
If you have a enhancement request, you can post it on the ideas site of Esri. There are several related to Collector: http://ideas.arcgis.com/apex/ideaSearchResults?s=Collector&searchButton=search If your request is not already within the ideas you can add it. After creating the idea, post the link in this thread to gain more support for your idea. Esri is constantly looking at these ideas. And those that have a lot of votes may be included in a next release. Kind regards, Xander
... View more
11-17-2014
06:00 PM
|
1
|
0
|
707
|
|
POST
|
Hi Dan, I have a separate post on that... Using Python List Comprehensions May have to rethink the python snippets and move things over to the python snippets place..
... View more
11-17-2014
04:40 PM
|
0
|
0
|
2134
|
|
POST
|
I have done a similar analysis trying to obtain multiple routes between two points. What I did was to include in the next step the previous route as exclusion (NoData in the cost raster for a small buffer around the vectorized path). Make sure that for a small area around the start and end point you leave the cost values, since otherwise you will not get any result.
... View more
11-17-2014
04:37 PM
|
0
|
2
|
1138
|
|
POST
|
I haven't had any negative experience with them either and truly believe that a day without list comprehensions is a day not lived (or coded actually)...
... View more
11-17-2014
04:33 PM
|
0
|
1
|
2134
|
|
POST
|
What I would like to know is... how did you end up with a dataset like this? Another relevant question is; do the polygons that overlay have the same geometry (shape) or can they partially overlay? That would make it a lot more difficult.
... View more
11-17-2014
04:30 PM
|
0
|
1
|
1221
|
|
POST
|
Yep, I have heard that, but then at least delete the line:
del sale, cursor
Since that is not necessary when using a with statement... At least that's what they say as well.
... View more
11-17-2014
04:26 PM
|
0
|
3
|
2799
|
|
POST
|
small suggestion... replace:
#Create empty set
salesSet = set()
with arcpy.da.SearchCursor(table, ["Sales"]) as cursor:
for sale, in cursor:
#Add sales to set
salesSet.add(sale)
del sale, cursor
for this:
salesSet = set([r[0] for r in arcpy.da.SearchCursor(table, ["Sales"])])
... View more
11-17-2014
02:45 PM
|
2
|
10
|
2799
|
|
POST
|
Have a look at the example which demonstrates how to modify the min and max instances for a service: ArcGIS Help (10.2, 10.2.1, and 10.2.2) The REST API Help to edit a service definition can be found here: ArcGIS Server Administrator API You're looking for: maxUsageTime maxWaitTime maxIdleTime Kind regards, Xander
... View more
11-17-2014
02:39 PM
|
1
|
0
|
841
|
|
POST
|
You would have to add the layer twice and use a definition query to show in one the "the emerald ash bore beetle" and in the other everything but the "the emerald ash bore beetle". Set the scale in which they should be visibly accordingly. Kind regards, Xander
... View more
11-17-2014
02:25 PM
|
0
|
0
|
828
|
|
POST
|
Hi Brandon, I missed a line in the beginning... json is a module that needs to be imported. add the line:
import json
...in the beginning of the code Sorry, Xander
... View more
11-17-2014
09:45 AM
|
1
|
1
|
2014
|
|
POST
|
Hi Sean, To create a rectangle feature: ArcGIS Help (10.2, 10.2.1, and 10.2.2) To split a polygon (rectangle): ArcGIS Help (10.2, 10.2.1, and 10.2.2) General information on editing: ArcGIS Help (10.2, 10.2.1, and 10.2.2) Kind regards, Xander
... View more
11-16-2014
07:47 PM
|
0
|
1
|
6134
|
|
POST
|
I haven't tested the code, but I guess this should work:
import arcpy
# settings
gdb = r"C:\Path\to\your\FileGeodatabase.gdb"
arcpy.env.workspace = gdb
# create a list of rasters in the folder
rasters = arcpy.ListRasters()
# loop through raster in list
for raster in rasters:
try:
arcpy.Delete_management(raster)
except:
print "Raster '{0}' could not be deleted".format(raster)
Kind regards, Xander
... View more
11-16-2014
07:00 PM
|
0
|
1
|
1285
|
|
POST
|
Hi Allison, Are the layer files you added to ArcMap referencing map services? In that case you cannot use them for analysis. Kind regards, Xander
... View more
11-16-2014
06:53 PM
|
0
|
0
|
672
|
|
POST
|
A rather manual way could be to create a rectangle and to split it using the contourline. Assign proper codes to both polygons that result and intersect them with the points. That way they you will obtain information to which side of the contourline they are located. In case you prefer coding the problem, there is a method in the arcpy.Polyline() object called queryPointAndDistance. ArcGIS Help (10.2, 10.2.1, and 10.2.2) Finds the point on the polyline nearest to the in_point and the distance between those points. Also returns information about the side of the line the in_point is on as well as the distance along the line where the nearest point occurs. Kind regards, Xander
... View more
11-16-2014
06:26 PM
|
2
|
3
|
6134
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 01-09-2020 09:26 AM | |
| 6 | 12-20-2019 08:41 AM | |
| 1 | 01-21-2020 07:21 AM | |
| 2 | 01-30-2020 12:46 PM | |
| 1 | 05-30-2019 08:24 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|