수많은 지리 데이터베이스가있는 폴더가 있습니다. 지오 데이터베이스에는 피처 클래스가 있습니다. 파이썬 스크립트를 사용하여 이러한 지오 데이터베이스의 기능 클래스 목록을 얻고 싶습니다. 지오 데이터베이스를 나열하는 것까지만 얻었습니다. 지오 데이터베이스에 피쳐 클래스를 나열하는 것에 대한 제안이 있습니까?
스크립트의 인쇄 항목 행은 다음과 같은 결과를 제공합니다.
C:\output\data.gdb
C:\output\otherdata.gdb
C:\output\somethingelse.gdb
위의 지오 데이터베이스에서 기능 클래스 목록을 생성하고 싶습니다. 아래는 지금까지 내 스크립트입니다.
import arcpy, os, sys
from arcpy import env
arcpy.env.workspace = "D:\\output"
inWorkspace = arcpy.env.workspace
workspaces = arcpy.ListWorkspaces("*", "FileGDB")
for item in workspaces:
print item #This part gives me the print statements I shared above
# fcList = arcpy.ListFeatureClasses() #I haven't figured this part out
#I want to list the feature classes in the geodatabases
1
지오 데이터베이스 내에 기능 데이터 셋도 있습니까?
—
blah238
아니요, 기능 데이터 세트가 없습니다.
—
Patty Jula