|
POST
|
You could use About georeferencing CAD datasets—Help | ArcGIS for Desktop, but that sounds like a lot of work to do each one. You could create a spread sheet of the subdivisions with decimal degree xy data and the associated attributes.Add XY Coordinates—Help | ArcGIS for Desktop
... View more
03-03-2016
10:32 AM
|
0
|
0
|
2380
|
|
POST
|
You may get an answer quicker in Survey123 for ArcGIS
... View more
03-03-2016
09:26 AM
|
0
|
0
|
1635
|
|
POST
|
If your comfortable with scripting have a look at Writing geometries—Help | ArcGIS for Desktop http://desktop.arcgis.com/en/arcmap/10.3/analyze/python/writing-geometries.htm
... View more
03-03-2016
08:58 AM
|
2
|
0
|
1938
|
|
POST
|
Thanks must be something wrong with the links again. copy and paste in your browser this path without the quotes "http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-data-access/insertcursor-class.htm"
... View more
03-03-2016
08:42 AM
|
0
|
0
|
1806
|
|
POST
|
Are you using a del statement for your curAppend? If your not your changes won't show until you close your python IDE InsertCursor—Help | ArcGIS for Desktop
... View more
03-03-2016
07:50 AM
|
0
|
4
|
1806
|
|
POST
|
If your data is stored in a geodatabase you may find Make Query Table—Help | ArcGIS for Desktop a useful option.
... View more
03-03-2016
07:12 AM
|
0
|
0
|
2119
|
|
POST
|
I've created a web map that has some simple features in it. When using the map on a mobile device you can click the target symbol so the on board gps will locate you on the map. The problem i'm having is that when you are located, the scale level is so small that you can't where you are is there a way to set the zoom to scale for the gps locator?
... View more
03-03-2016
06:33 AM
|
0
|
2
|
4495
|
|
POST
|
Is the source and destination fields the same type? ie string Append—Help | ArcGIS for Desktop Using the field mapping control—Help | ArcGIS for Desktop
... View more
03-03-2016
05:48 AM
|
0
|
1
|
856
|
|
POST
|
I haven't tested but have you tried numpy it works great with arrays import numpy as np
import arcpy
field_names = 'your field names
newarr = arcpy.da.FeatureClassToNumPyArray(originFC,(field_names),null_value=-9999)
np.mean(newarr)
... View more
03-02-2016
10:49 AM
|
0
|
0
|
1106
|
|
POST
|
I've done this in the past two ways: Add a layer to the map and give it the symbology but cut the layer off. You'll have to tell the legend to display even though the layer is not on Manually add the symbology and description to the legend
... View more
02-28-2016
09:08 AM
|
2
|
10
|
4979
|
|
POST
|
Could you provide your model and some sample data. A demonstration may explain things better.
... View more
02-26-2016
05:28 AM
|
0
|
2
|
3578
|
|
POST
|
Are all the tables in the same workspace and do they all use the same field name. You should be able to take your working model and put it in another model. Then use: http://desktop.arcgis.com/en/arcmap/10.3/tools/modelbuilder-toolbox/iterate-tables.htm Examples of using iterators in ModelBuilder—Help | ArcGIS for Desktop
... View more
02-26-2016
04:58 AM
|
0
|
4
|
3578
|
|
POST
|
In your iteration section change the values for something similar to below. You'll want to fill in the where clause with the proper field and field delimiters. Make Table View—Help | ArcGIS for Desktop num = 0
for row in arcpy.da.SearchCursor(InTable, Field):
value = row[0]
num = num + 1
arcpy.MakeTableView_management (in_table, out_view, {where_clause})
... View more
02-25-2016
11:36 AM
|
0
|
6
|
3578
|
|
POST
|
You could use a Spatial Join—Help | ArcGIS for Desktop to get the oids and calculate them to your new feature class.
... View more
02-23-2016
07:52 AM
|
0
|
5
|
5727
|
| 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
|