|
POST
|
You could always create a field to hold the OBJECTID before you create the new feature classes
... View more
02-23-2016
07:29 AM
|
1
|
1
|
5727
|
|
POST
|
I don't have a way to provide a screen shot this morning. Right click your field in the spatial join dialog and "add input field"
... View more
02-19-2016
05:42 AM
|
2
|
1
|
2580
|
|
POST
|
Did you map the field with the desired values to the new field? Is your distance large enough to capture any features? Try changing from within a distance to closest.
... View more
02-19-2016
05:30 AM
|
0
|
3
|
2580
|
|
POST
|
Yes, for the join operation use one to one and use a match option that best suits your data, you should get the desired results.
... View more
02-19-2016
04:14 AM
|
2
|
5
|
2580
|
|
POST
|
You can use Spatial Join—Help | ArcGIS for Desktop and set the field properties to join and pick your delimiter
... View more
02-18-2016
01:39 PM
|
1
|
7
|
2580
|
|
POST
|
I've been trying for a while to come up with something similar and even converted Bruce's code to use multiprocessing. Below is the code that shows the most promise it will process 67000+ features and compare against 67000+ features in about a minute. #Script to compare 2 feature classes
#Author Wes Miller
import arcpy
import numpy as np
import datetime
#Print start time and date
dt = datetime.datetime.now()
print dt
#The Feature Class to Check
originFC = arcpy.GetParameterAsText(0)
#The feature class with updates needed for feature class above
changeFC = arcpy.GetParameterAsText(1)
origDesc = arcpy.Describe(originFC)
oidName = origDesc.oidFieldName
field_names = arcpy.GetParameterAsText(2)#Example: "Shape","TMS","OWNERNAME","TOTBDGVAL","DISTRICT","ADD1","ADD2","ADD3","MAP","BLOCK","PARCEL","CALCULATED_ACREAGE","ADDR_SITE"
originFCarr = arcpy.da.FeatureClassToNumPyArray(originFC,(field_names),null_value=-9999)
originFCarrID = arcpy.da.FeatureClassToNumPyArray(originFC,(oidName))
changeFCarr = arcpy.da.FeatureClassToNumPyArray(changeFC,(field_names),null_value=-9999)
changeFCarrID = arcpy.da.FeatureClassToNumPyArray(changeFC,(oidName))
print "Arrays Complete"
count = 0
deletesarr = np.where(np.invert(np.in1d(originFCarr,changeFCarr)))
addsarr = np.where(np.invert(np.in1d(changeFCarr,originFCarr)))
adds = []
for each in addsarr[0]:
adds.append(changeFCarrID[each][0])
deletes = []
for each in deletesarr[0]:
deletes.append(originFCarrID[each][0])
#Current Outputs are printed here for testing purposes
print adds
print
print deletes
ndt = datetime.datetime.now()
print ndt
... View more
02-18-2016
01:06 PM
|
1
|
1
|
4400
|
|
POST
|
Now that you have them clipped you could Create Mosaic Dataset—Help | ArcGIS for Desktop
... View more
02-18-2016
12:36 PM
|
0
|
0
|
2268
|
|
POST
|
The dwg may also be a newer version of cad if you can save the cad file to an older version then add to arcmap. Edit: See link below Supported CAD formats in ArcGIS—ArcGIS Pro | ArcGIS for Desktop
... View more
02-18-2016
12:24 PM
|
1
|
0
|
4131
|
|
POST
|
Normally i do index sheets by zooming to the index layer and disabling data driven pages. I don't know of a way to create them as part of the data driven pages process.
... View more
02-18-2016
10:18 AM
|
0
|
0
|
1112
|
|
POST
|
The server is where i run my scripts with task scheduler.
... View more
02-17-2016
03:33 PM
|
0
|
0
|
1020
|
|
POST
|
You could use Mapping input fields to output fields—Help | ArcGIS for Desktop to create your own fields you could then do your counts
... View more
02-16-2016
05:54 AM
|
1
|
0
|
2455
|
|
POST
|
you'll need to cast the unique id to a string !LEASE! + "-" + str(!UNIQUE_ID!)
... View more
02-15-2016
05:54 PM
|
0
|
3
|
2136
|
|
POST
|
See tools listed below. Delete Rows—Help | ArcGIS for Desktop Truncate Table—Help | ArcGIS for Desktop Append—Help | ArcGIS for Desktop
... View more
02-15-2016
01:44 PM
|
0
|
0
|
2743
|
| 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
|