Tagged Questions
3
votes
2answers
372 views
Can't Select and Export from Python Script
I am a novice in python programming but I am trying to learn by doing.
I got stuck with this function a while back and can't seem to find a solution or a workaround.
I am writing a script that is ...
3
votes
1answer
252 views
How to pan to a specific feature using arcpy?
I am attempting to use python and arcpy to automate the creation of some standardized maps I need to export for feature classes from various projects. I have a set of points and I need to export a ...
3
votes
1answer
683 views
How to clip/export multiple selected vector layers in a map to extent of another raster/vector layer in ArcGIS?
Is there a way to clip/export selected vector layers (more than one) in a map to the extent of another raster/vector layer at a time?? in Arcgis or any other software.
I am using Arcgis10. I am ...
4
votes
4answers
893 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 ...
1
vote
1answer
67 views
Is there a way to access ps.map in python?
i am wondering whether its possible using python interface to load layers and edit them in Print/Cartographic Composer without displaying, and finally export to PDF?
something that can be done via ...
1
vote
1answer
267 views
Using arcpy.mapping.ExportToTIFF() to create dataframe geotiff
Has anyone created a dataframe geotiff using arcpy.mapping.ExportToTIFF() with satisfactory results?
My output has poor quality and the georeferencing is significantly off.
This example is the ...
5
votes
2answers
836 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, ...
8
votes
2answers
779 views
Export table to X,Y,Z ASCII file via arcpy
I'm looking for a way to export an ArcGIS table (created with the Sample command) to a text file via arcpy. I can do this in ArcGIS via the context menu by right-clicking the table, but have not found ...