Tagged Questions
3
votes
1answer
74 views
How to validate Personal Geodatabase against XML schema?
Is their any tool in arcgis model builder which can validate a personal geodatabase and a XML schema to give out an report saying if the gdb is validated or not ...
5
votes
1answer
98 views
How to Add FileGDB driver to PyGDAL installation
I installed ArcGIS 10.0 and it installed Python 2.6.5 with it. Later, I installed pyGDAL using the windows installer within that Python installation. I cannot find a specific place where GDAL is ...
4
votes
2answers
495 views
How to programmatically work with featureclasses from multiple geodatabases?
I have produced a Python script which creates multiple buffers of specific (listed) featureclasses within a geodatabase. This is achieved by running each feature through a for loop.
I would like to ...
4
votes
1answer
340 views
python crashes creating many Feature Classes in multiple Feature Datasets
I'm trying to populate a Geodatabase with roundabout 60 Datasets with a new Featureclass for each Dataset. To do this, i wrote a python-standalone-script that loops through these datasets and creates ...
2
votes
1answer
147 views
deleted features not synchronizing in one-way geodatabase replication (ESRI)
I am testing three one way (SDE -> file GDB) replicas. Each replica is derived from a layer created by selection by location from a citywide road dataset, so that each of the three layers is ...
3
votes
0answers
402 views
How to load data programmatically from shapefile into feature class (geodatabase)?
Can some Genuis here help me programmatically (using python and comtypes) load shapefile data in to an existing geodatabase (feature class). The attributes of the shapefile has to match with the ...
5
votes
1answer
162 views
Changes in synchronized replica not shown in ArcMap or ArcCatalog without refreshing
I am synchronizing a one-way replica in ArcEditor using Python. I tried adding RefreshActiveView and RefreshCatalog to the code, but I still need to refresh the synchronized database to see the ...
4
votes
2answers
409 views
How to check if domain already exists?
I am trying to check the existence of domains in my file geodatabase which contains 4 domains (automatically populated after I created some annotation feature classes). My code is as follows:
import ...
9
votes
1answer
449 views
How to get the size of a file geodatabase feature class on disk?
Is there a simple way to determine the amount of hard drive space a feature class takes up? I feel like I'm missing something simple, but I don't recall a method that does so. You would think that ...
2
votes
1answer
320 views
How to switch to a GDB created in the middle of a script
EDIT:
Here's my full script and hopefully a better way of explaining what I need done:
#Import
import arcpy, sys, os
# Set environment settings
arcpy.env.workspace = sys.argv[1]
inFiles = ...
6
votes
2answers
737 views
Creating geodatabase from CSV using python
I have a file with weather data (daily) for multiple weather stations for multiple years. I am looking for some python script to automate the database creation process and its interpolation on a daily ...
3
votes
1answer
765 views
How to list all of the contents of a geodatabase with arcpy?
This seems like a simple problem, but I have not found a way to accomplish it. I am writing a script that needs to record the paths of everything inside of a geodatabase to a text file, and later copy ...
0
votes
1answer
175 views
Insert cursor raises exception on geodatabase
world,
I'm having trouble to insert a line geometry into a personal geodatabase (using Python/ArcGIS 9.3.1). Everything works fine if the target feature is a shapefile. My guess is that calling:
...
3
votes
2answers
599 views
How to repair paths of an unmanaged raster catalog in file GDB?
I'm using ArcGIS 9.3.1 and I have an unmanaged file geodatabase with raster catalogs in it. Tiles are loaded inside the catalog and each tile has a "Full Path" property which is environment specific. ...
5
votes
4answers
1k views
Does File Geodatabase performance degrade as it fills up?
I'm having a memory leak issue. Upon investigating this more, it seems the file based geodatabase I write to in a loop, is growing very large, and as it grows, it significantly degrades the ...
3
votes
2answers
1k views
How to create a feature class in a file geodatabase in ArcGIS 9.3 with Python?
I'm not entirely sure if I am using the correct terminology, so I apologize in advance. What I am looking to do is create a file geodatabase and add a feature class directly into that file ...
4
votes
1answer
339 views
Determining ESRI File Geodatabase release version?
Is there any method in Python, ArcObjects, or the File GDB API for determining the release version (9.3, 10.0, etc.) of a file geodatabase? There is a need to find all of our shared 10.0 version file ...
0
votes
2answers
243 views
FME API Module null?
I try to convert my geodatabase to Excel.
And i have a strange message:
FME API version of module 'XLS_ADO'
matches current internal version (3.6
20101014) Trying to find a DYNAMIC
plugin ...
0
votes
0answers
158 views
How to read a feature table empty with FME / Python?
I would like to convert a feature table Geodatabase (empty) to MapInfo, but my feature table is empty.
I would like to write the schema of feature table in MapInfo file.
Is it possible to force the ...
0
votes
2answers
282 views
Read feature table with FME / Python
I try to convert a feature table Geodatabase to MapInfo with FME / Python
But each test, my application crash.
There is no geometry in my feature table in file geodatabase.
Why my application crashes ...
1
vote
1answer
248 views
FME Feature Type with Python
Here, the python for create a list of feature type but....
import sys
from pyfme import *
try:
log=FMELogfile("shapeToTAB.log")
log.log("Opening reader",FME_INFORM)
...
3
votes
2answers
452 views
How to get a list of features from FME? Python?
I would like to get a list of geodatabase feature tables from FME.
Is it possible with Python? Or another transformer?
Thanks.
4
votes
3answers
3k views
How to list feature classes with active “attribute domains”?
I have an Esri file geodatabase with attribute domains defined. I need to delete some of the attribute domains but can't because "The domain is used by an attribute rule.". How might I discover which ...
3
votes
2answers
2k views
Dealing with empty feature classes in a ArcGIS 9.3.1 Python script
I have a script that goes over all the feature classes within a geodatabase (in ArcGIS 9.3.1) and copies them. The problem (as far as I can understand) is that when the script goes to a empty feature ...
4
votes
5answers
2k views
How do I build a form within ArcMap?
I am building a file geodatabase using ArcGIS. The gdb is going to be distributed to dozens of 'stand alone' machines. End users are expected to populate the gdb with data. End users do have ArcGIS ...


