|
POST
|
See Richard Fairhurst's Blog Creating Labels with Related Table Data
... View more
04-18-2016
09:03 AM
|
1
|
0
|
1396
|
|
POST
|
I'm at 10.2.1 when i run the the tool i get the expected results, below is a screen shot of both the table and excel test
... View more
04-15-2016
08:07 AM
|
0
|
1
|
905
|
|
POST
|
Could you expand on your example so we may get a better understanding of what you are trying to do?
... View more
04-14-2016
07:20 AM
|
0
|
0
|
3360
|
|
POST
|
You may want to move your question to the Developers group
... View more
04-14-2016
06:06 AM
|
0
|
0
|
978
|
|
POST
|
See this link Using the Utility Network Analyst toolbar—Help | ArcGIS for Desktop
... View more
04-14-2016
06:04 AM
|
0
|
0
|
1306
|
|
POST
|
You could put all the grids in a single field. When you do your spatial join use Join operation Join_one_to_one and in the field map section right click the grid field and choose properties and set Merge rule to join and choose your delimiter. This would produce a feature class with Name Grid Stone Harbor A1,A2,A3,A4,B3 Using the field mapping control—Help | ArcGIS for Desktop
... View more
04-14-2016
05:21 AM
|
0
|
0
|
1195
|
|
POST
|
After you do the clip couldn't just use a select by location to get those that are in your AOI? Then Export to Excel Table To Excel—Help | ArcGIS for Desktop
... View more
04-12-2016
12:52 PM
|
1
|
0
|
1115
|
|
POST
|
You may want to check your mdb for domains. A quick tour of attribute domains—ArcGIS Help | ArcGIS for Desktop
... View more
04-12-2016
11:50 AM
|
0
|
0
|
4582
|
|
POST
|
Create a new polygon feature class and use your trace tool to create the polygons then use the clip or intersect tools. Creating a new shapefile—Help | ArcGIS for Desktop
... View more
04-11-2016
12:25 PM
|
0
|
0
|
516
|
|
POST
|
If that works here is the Delete—Help | ArcGIS for Desktop help
... View more
04-11-2016
06:40 AM
|
0
|
0
|
1482
|
|
POST
|
Forgot it was an array, see if this works import arcpy, numpy ,os
arcpy.env.overwriteOutput = True
InPath = r"F:\Departments\GIS\Wes\PySripts\DanPatterson\Code4GeoNet\CopyTest\Paths.txt"
OutPath = r"F:\Departments\GIS\Wes\PySripts\DanPatterson\Code4GeoNet\CopyTest\CopyTo"
filename = open(InPath, 'r') #Not being used
arr = arcpy.da.TableToNumPyArray(InPath, "Datenpfad")
for line in arr:
print line[0]
print os.path.join(OutPath,os.path.basename(line))
arcpy.CopyFeatures_management(line[0], os.path.join(OutPath,os.path.basename(line[0])))
... View more
04-11-2016
06:38 AM
|
1
|
0
|
1482
|
|
POST
|
When you use print line in 8 what do you get. ON line 9 you are coping whatever is printed on line 8 but you are printing to the same name over and over. I didn't test this but you may need to do something similar to below
import arcpy, numpy ,os
arcpy.env.overwriteOutput = True
InPath = r"R:\Karto\Geodaten_Archiv.txt"
OutPath = r"R:\Daten\geo_daten\geodaten_archiv\SIC_2016_04_07"
filename = open(InPath, 'r') #Not being used
arr = arcpy.da.TableToNumPyArray(InPath, "Datenpfad")
for line in arr:
print line
arcpy.CopyFeatures_management(line, os.path.join(OutPath,os.path.basename(line)))
... View more
04-11-2016
05:57 AM
|
0
|
3
|
1482
|
| 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
|