POST
|
It's been my experience that multiprocessing and tool box don't play well with one another. You're be better off running as a stand alone script.
... View more
09-13-2016
05:43 AM
|
0
|
0
|
819
|
POST
|
Have a look at Local Government Information Model | ArcGIS for Local Government
... View more
09-07-2016
01:47 PM
|
1
|
0
|
1197
|
POST
|
Your question is not very clear. If you have a feature class and need to create a report for each record you can use data driven pages to produce your reports.
... View more
08-25-2016
12:39 PM
|
0
|
0
|
245
|
POST
|
As Joe said Append—Help | ArcGIS for Desktop and also the FieldMappings—Help | ArcGIS for Desktop
... View more
08-24-2016
12:44 PM
|
2
|
0
|
1087
|
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
|
1529
|
POST
|
Did you see this thread Advice for splitting polygon into several "strips"
... View more
08-11-2016
09:19 AM
|
1
|
1
|
5392
|
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
|
585
|
POST
|
In addition to Dan this may also help UpdateCursor—Help | ArcGIS for Desktop
... View more
08-09-2016
01:50 PM
|
0
|
0
|
654
|
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
|
306
|
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
|
975
|
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
|
2574
|
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
|
578
|
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
|
577
|
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
|
3046
|
Title | Kudos | Posted |
---|---|---|
2 | 09-14-2015 01:29 PM | |
1 | 01-26-2016 10:18 AM | |
1 | 08-18-2015 06:01 AM | |
1 | 06-20-2016 12:34 PM | |
1 | 01-19-2016 06:13 AM |
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:23 AM
|