Questions tagged [feature-dataset]
a collection of related feature classes that share a common coordinate system.
78 questions
0
votes
0
answers
32
views
Create something similar to feature dataset in QGIS [duplicate]
I have data in the format of an ArcGIS feature dataset (hydrology data). I want to make similar to feature dataset in QGIS (create a feature dataset in GeoPackage). How can I do it?
0
votes
1
answer
128
views
Geodatabse 'ghost' feature dataset and feature layer duplicates
Long story short, I reprojected my data into WGS 84 without realizing they would be exported into the same master source gdb, deleted the duplicates, but now see ghost duplicates of feature datasets ...
0
votes
1
answer
354
views
Getting feature datasets with arcpy.da.Walk
I am using ArcGIS Pro 3.1.0.
I'm trying to find feature datasets in file geodatabase (possibly many geodatabases, but for clarity here only one) using arcpy.da.Walk. I'm aware of workaround using ...
0
votes
1
answer
568
views
Some Feature Dataset layers not drawing in ArcGIS Pro
I have an enterprise geodatabase with multiple feature datasets. I have one feature dataset that will not load any of the feature classes. One work around is to copy/paste the needed layer multiple ...
1
vote
0
answers
79
views
arcpy.da.Walk can not get feature class in dataset with Chinese in path (could reoccurrence bug)
2023.02.27 edit. I know how fix it now, but would like to know why so that I can change my module.
I used to use this function to iterate all feature classes, but it has a problem with path with ...
1
vote
1
answer
67
views
Make Service Area is creating these feature datasets
I'm running the Make Service Area tool in ArcPy and every time it creates a feature dataset in my gdb named "ServiceAreaSolver1xxxxxx." I've ignored them but they are taking up space and are ...
1
vote
3
answers
1k
views
Listing feature classes from multiple feature datasets in GDB
I am trying to list all feature classes from multiple datasets with single GDB. I have tried with below code
import arcpy
from arcpy import env
env.workspace = r"C:\GDB\Base.gdb"
fdlist = ...
5
votes
1
answer
975
views
Organizing Geopackage similarly to structure of geodatabase
I've been looking all over the Internet if there is a way to organize a geopackage similar to a geodatabase, that is, to create multiple groups (similar to feature datasets in a gdb) within the ...
2
votes
2
answers
650
views
Where to see Feature Datasets in SQL Developer
Background: I am a non-GIS programmer, I do however directly work with numerous GIS products and data. Generally I primarily interact with the GIS data directly via the database (Oracle) through SQL ...
0
votes
1
answer
489
views
Python Script not working on versioned Feature Class
I have a geoprocessing script that worked great, until moving the data source to a feature dataset where it must be versioned.
when this script is pointing to the layer outside the feature dataset, it ...
3
votes
2
answers
4k
views
arcpy.da.InsertCursor - Objects cannot be updated outside edit session in ArcMap10.8
I am trying to copy features from a Feature Class in a GDB to a Feature Class within a Feature Dataset (Turn_Restrictions that is created by the Network Analyst process [i.e. arcpy....
2
votes
1
answer
243
views
Reproducing drag-n-drop for Feature Classes using ArcPy in ArcGIS Pro
There is a Geodatabase with several Feature Datasets (FD), because a requirement in Location referencing tools in ArcGIS Pro 2.6 and above, Feature Classes (FC) from one FD should be moved to another ...
0
votes
1
answer
297
views
Exporting shapefiles to file geodatabase results in no coordinate system (ArcMap)
I export shapefiles with a defined coordinate system to a file geodatabase assigning the export coordinate system same as input file, but when I try to import them back into the project from the file ...
1
vote
1
answer
173
views
Is it possible to use OSRM in order to calculate routing into a building?
I would like to know: If we save in the OSRM server a dataset of points stored from a GPS tracker into a building (a flat one). Is it possible to request the server in order to find the shortest way ...
1
vote
0
answers
237
views
Determine the feature dataset of a layer in an Esri file geodatabase
I have an Esri file geodatabase with a single feature dataset.
Using ogr and python
ds = ogr.Open('myfile.gdb')
for i in range(ds.GetLayerCount()):
layer = ds.GetLayerByIndex(i)
I can iterate ...