POST
|
You could use Dissolve—Help | ArcGIS for Desktop on your fema dataset then use spatial join then you would only have one record for each type.
... View more
08-17-2016
10:34 AM
|
0
|
1
|
12
|
POST
|
Did you see this thread Advice for splitting polygon into several "strips"
... View more
08-11-2016
09:19 AM
|
1
|
1
|
584
|
POST
|
Have tried putting some print statements in? print arcpy.env.workspace print dataList ListFeatureClasses—Help | ArcGIS for Desktop
... View more
08-10-2016
08:23 AM
|
0
|
0
|
10
|
POST
|
In addition to Dan this may also help UpdateCursor—Help | ArcGIS for Desktop
... View more
08-09-2016
01:50 PM
|
0
|
0
|
11
|
POST
|
To sort spatially and if you have an advanced license Sort—Help | ArcGIS for Desktop This will not do what you are asking to do, but maybe gets you close.
... View more
08-04-2016
07:49 AM
|
0
|
0
|
5
|
POST
|
Are you working with a geodatabase feature class. Raster will not be available for shapefiles.
... View more
07-21-2016
01:45 PM
|
2
|
2
|
18
|
POST
|
In python a backslash is an escape character. I don't think you'll be able to use for a csv. Have you tried using 2 \\ or a forward / slash?
... View more
07-21-2016
01:30 PM
|
1
|
9
|
104
|
POST
|
You may be working harder than you need to: Use Spatial Join—Help | ArcGIS for Desktop to get a count of your wells in each county And then use it again(the other way around) to create a table with wells and county names, then you can Add Join—Help | ArcGIS for Desktop to your wells then use Calculate Field—Help | ArcGIS for Desktop to populate your field with county.
... View more
07-15-2016
05:08 AM
|
1
|
0
|
13
|
POST
|
The script below will produce an oid list of paths that don't exist. import arcpy fc = r"your\feature\class" fld = "yourPathField" desc = arcpy.Describe(fc) oidName = desc.oidFieldName oidlist = [] flds = [oidName,fld] with arcpy.da.SearchCursor(fc,flds) as rows: for row in rows: if arcpy.Exists(row[1]): pass else: oidlist.append(row[0]) print oidlist
... View more
07-14-2016
08:09 AM
|
1
|
0
|
11
|
POST
|
Have you thought about branching? Using If-Then-Else logic for branching—Help | ArcGIS for Desktop
... View more
07-12-2016
08:46 AM
|
1
|
0
|
104
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:23 AM
|