Tagged Questions
4
votes
4answers
906 views
Export list of Feature classes to CSV
I am successfully using the follow script
import arcpy
from arcpy import env
import os
env.workspace = ("WORKSPACE")
fcList = arcpy.ListFeatureClasses()
print fcList
to export feature class names ...
4
votes
3answers
484 views
How to identify feature vertices that are part of a donut hole in ArcGIS 10?
I´m exporting the coordinates of polygon vertices to a CSV-File using the "Feature Vertices to Points" and then the "Export feature attributes to ASCII"-tools.
Some of these polygons have holes ...
1
vote
1answer
182 views
Error 000204 using “Export Feature Attribute to ASCII” Tool on ArcGIS Server 10
I´m trying to export feature attributes to a CSV-File (on ArcGIS Server) to use them in other applications (using the "Export Feature Attribute to ASCII" Tool).
While the tool is working ok in a ...
5
votes
2answers
846 views
Using SearchCursor to access & export values in a raster table
I am desperately trying to export the values in a raster table to a .txt file. I've seen some other folk post about this, but for some reason can't get the code to work in my case.
I have a raster, ...