Tagged Questions
0
votes
1answer
42 views
How to configure web map data layer that can accept csv data uploaded by user?
I made this map: http://tinyurl.com/a368268 on arcgis online. How do I get the same map but instead you can upload a new csv every time? Instead of having to first add it as data layer on arcgis ...
8
votes
3answers
349 views
How to best prepare CSV files for use in ArcGIS?
I wonder if there are any recomendations how to properly prepare CSV files for use in ArcGIS. I ask because I have some troubles using CSV files because ArcGIS attributes wrong field types to my ...
1
vote
1answer
203 views
How to auto-create a schema.ini file for a .csv?
I have been given some data in a csv file, which I need to import into my ArcSDE geodatabase. ArcGIS is having problems recognizing the field types, and is not importing some data. It is recognizing ...
4
votes
4answers
891 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 ...
