logo logo

Copy feature class from one geodatabase to another arcpy

Your Choice. Your Community. Your Platform.

  • shape
  • shape
  • shape
hero image


  • gdb". I want to use arcpy and suspect that fieldmappings are somehow required for this. How can I move files into that Feature Dataset with ArcPy? Please see picture: I want to move the shapefile "myshp. FeatureClassToFeatureClass_conversion (in_features, out_path, out_name, {where_clause}, {field_mapping}, {config_keyword}) It's slightly annoying since you have to specify both output workspace and output feature class name, and I don't know why that's the case, but there you go. import traceback. Run FeatureClassToFeatureClass (Conversion) GP tool in ArcMap and set up in the Expression parameter 1 = 0 to not export any feature while deleting the unneeded Aug 21, 2014 · The basic concept is there is a SQL table that is updated with addresses, the script needs to pull that table into a intermediate file geodatabase, geocoded it, compare the geocoded results to the existing SDE feature class, and remove any old entries from the SDE feature class, append any new features, and leave alone any that are the same. Does anyone have a suggestion on listing the feature classes in the geodatabases? The print item line in my script gives me the following results: C:\output\data. from arcgis. I have used it many times. CopyFeatures_management(f, output) This will return a list of Cedar_addresses, Cedar_roads, and Cedar_parcels and copy those into another gdb. Copies features from the input feature class or layer to a new feature class. I've only gotten so far as listing the geodatabases. I am wanting to create a script that will run nightly backups on The feature class or feature layer that will be converted. Nov 20, 2015 · import arcpy, os gdb_in = #path to input geodatabase gdb_out = #path to output geodatabase walk = arcpy. ListFeatureClasses Apr 6, 2020 · 04-07-2020 05:21 PM. 02-15-2021 03:13 PM. So, if I'm reading it right it thinks the Drop Field value (second value in the DeleteField_management function) is invalid or nonexistent after it loops through the first geodatabase's Point and Polyline feature classes. Dec 15, 2020 · I would like the attributes of the destination feature class to only contain the actual codes, not the descriptions. Jul 31, 2023 · I have a file geodatabase. May 5, 2015 · I am trying to copy fgdb from one path to another using Python. 2. shp files to a geodatabase. If the input is a layer and has a selection, only the selected features are copied to the output feature class. sde" fc = "SDE. Both the schema and all the contents of the geodatabase will be copied. This tool supports versioned and nonversioned data as input. Sep 27, 2021 · This question regarding ArcToolbox. import os. However, what does occur is a duplication of one of the tables, one of the feature classes, and one of the relationship classes. Mar 25, 2020 · Tryng to append a selected set of features to an existing FC So I grab a point, create a buffer in memory, select counties in that buffer, then I want to write those to a multipart feature in an existing FC The selectedCounties. Jun 21, 2016 · Since you're not copying your features into a geodatabase, #Copies all feature class from one folder to another import arcpy try: arcpy. But when I use it on a particular dataset, the gdb that receives the copy contains an empty feature class, while it the feature class should not be empty. And then remove features copied from the Source. I have previously just deleted the feature class in the second database and remake it with the updated first feature class. Oct 30, 2017 · I need an exact copy of the entire geodatabase, but with all feature classes projected in the appropriate state plane coordinate system. I have about 10 geodatabses, some of which have feature classes that are not in the others, everything else has the same schema. The feature class which will be created and to which the features will be copied. workspace = "" #Workspace "C:/Temp". Feb 10, 2017 · I have a python script that is suppose to merge geodatabases. env Dec 23, 2022 · In ArcGIS Pro, expand all the geodatabases in the Catalog pane. Removing it from the topology solved the issue. Any name conflicts are automatically resolved and highlighted in red. Jan 24, 2017 · ArcMap 10. I'm not sure that I am using the correct function Delete_management. You can easily copy any dataset from one geodatabase to another using the Copy tool in ArcCatalog: In the ArcCatalog tree, right-click the feature dataset, feature class, or table you want to copy. gdb" workspace = r"C:\user\Geodatabases\gdb_4. I have been able to copy single . 360000 DA Insert Cursor: DA Insert Cursor: 0:00:01. Describe(fc) #copies the features using a function that saves the new feature class with the basename. Right-click the geodatabase to which you want to copy the data. sde' gdbFile = r 'c:\1\x. what I need is simply doing what we can do in ArcMap GUI like. The Copy tool does not allow you to copy a feature dataset into a file geodatabase Data copying and loading tools, which are described later in the approach, can therefore preserve the values in the GUID column. For example, several tables can be appended to an existing table Mar 12, 2015 · I would like to use Windows task scheduler to automatically (monthly) create a new file geodatabase and then export feature classes from SDE into the new file geodatabase. Apr 27, 2016 · Is it possible to create a python script to import shapefiles/feature classes, from different sources into specific feature datasets in geodatabase, but in one script? I managed to write the script to make multiple feature datasets in geodatabase. Click Paste . gdb\\fds". May 27, 2016 · Copy Features (arcpy. It might be actually way faster to write a Python script that will copy the feature classes between the Delete fields for feature classes that were imported (it is faster to delete fields on empty feature class than on the one with features) with arcpy. for field in fields: #Check if field has domain. workspace = "C:/data/mygeodatabase. Feb 10, 2021 · Hi. It is recommended that you make a backup copy of the data used as for fc in filtered: if arcpy. # List all feature classes in the geodatabase. @GeoJohn - Exactly. Geodatabase configuration keyword to be applied if the output is a geodatabase. Once created, an . workspace = adminconn arcpy. If the input is a layer which has a selection, only the selected features will be copied. Something like below but It might just be easier to use the Use append tool to append your selected features including all attributes. If the data contains 3D data, check the Coordinates include Z values. Click Copy . basename) I am new to ArcPy scripting, I need help on copying the features to SDE feature class. outworkspace = "C:\\Users\\bjbart\\Desktop\\Marathon_Loading\\SURVEY_POINTS_V10_1. All I want to know is how to copy the feature class (template) so I can get just the fields and associated domain values, and no geometry type from the one that I am copying from. myFeatureClass" If the feature class is in a feature dataset, tack on the the feature dataset name to the workspace like so: Dec 18, 2015 · The following source code shows how to copy features from one feature class (Source) to another feature class (Destination) when both features are versioned. The features to be copied. gdb C:\output\otherdata. Click the lower half of the Paste button and choose Paste Special. ListDatasets('*','Feature') for dataset in datasetList: arcpy. May 23, 2024 · On the ribbon, in the Clipboard group, click Copy. gdb C:\output\somethingelse. conversion. Click Next. But just blindly copying a feature class from one gdb to another may be problematic. data_type. workspace = "C:/Users Oct 31, 2017 · Most of the time it is just adding new features, but sometimes I do update attributes on existing features. The Copy Features will all the feature classes one by one, and you shouldn't care if any changes occur in the SDE geodatabases. CopyFeatures_management(fc, "C:\\Users\\welchk\\Desktop\\HW6_data\\data\\t_6. If you do not want to move relates then the best way is to create identical new feature class at target db then use Append to transfer data only. List all feature classes in a geodatabase, including any in feature datasets. I want to copy a common feature class of these gdb to a single gdb import os import arcpy arcpy. This is then checked against feature classes and fields to assign the correct domain to each field. Using the interface, I can simply add data and click through the gdb and the feature data set, so I know the data does exist. In ArcGIS Pro, you can copy tables, feature classes, and views (hereafter referred to collectively as tables) from a relational database or a geodatabase and paste them into another relational database or geodatabase. domain != "": #Print feature class, field, domain name. Feb 22, 2020 · Hello, Im using modelBuilder to attempt to create polygon datasets for each feature dataset in a geodatabase. workspace = workspace #get a Data Element. In the Contents pane, browse to and right-click the polygon layer’s attachment table, and select Open. Used to store 3D data. 004000 Feature Class to Feature Class Feature Class to Feature Class: 0:00:00. This tool can append point, line, or polygon feature classes, tables, rasters, annotation feature classes, or dimension feature classes to an existing dataset of the same type. Jun 22, 2016 · I'm trying to write a python script to load feature class from an existing geodatabase to a new one, here is my script: import arcpy from arcpy import env import os import traceback #Set up workspace outworkspace = r"C:\user\Geodatabases\Gdb_mena_v3. 514000 May 18, 2016 · Just putting in my 2 cents here. The steps: create a new SDE version a WorkingVersion; select Source Feature Class with features to be copied and make a Feature Layer Sep 1, 2016 · I am trying to create a layer from a feature class that exists within a feature dataset within a geodatabase. If the input is a geodatabase feature class or shapefile, all features will be copied. If you are loading data, perform the conversion to the datasets into which you want to load the data. user = # AGOL or Portal username. Mar 10, 2015 · by NobbirAhmed. workspace = r"C:\\GDB\\Base. Copy/paste domain(s) from source into target by right-clicking > Copy/Paste on the left side of the desired row in the domains interface (the bottom blank row in the case of the target). CopyFeatures example (Python window) The following Python window script demonstrates how to use the CopyFeatures tool in immediate mode. Feature-linked annotation created in ArcGIS Desktop must first be upgraded using the Upgrade Dataset tool. Just looking at the name means it won't copy even though it has a more complete list of roads. Copy_management () because the latter will fail when there is topology or other stuff that are only supported in geodatabase enterprise. the question is that how can i list the feature classes of the geodatabases using Arcpy. I am using Python to manipulate data. da. Click Copy. workspace = r"C:\temp\python\test. mrf file cannot be copied, renamed, or deleted in ArcGIS Pro. Add two new fields to the attachment table. When storing a raster dataset to a JPEG format file, a JPEG 2000 format file, or a geodatabase, you can specify a Compression Type value and a Compression Quality value in the geoprocessing environments. Also, Copy_management () is copying all relationships so when you loop over a dataset, it can tries to copy a feature class many times. This is only necessary when the input data is in a geodatabase and naming conflicts exist, for example, if the geodatabase contains a feature dataset and a feature class with the same name. ListFields(FC) #Loop through fields. The Paste Special window appears. gdb" env. Something like Feature Class to Feature Class should be used to copy feature classes to a new location. Code Sample. 2 if this matters. Here is an example script that demonstrates how to do this: import arcpy. Copying geometric networks, network datasets, and topologies also copies the participating feature classes. B = !A! update: Sep 7, 2023 · Select and double-click OBJECTID in the Fields section to insert it under the Control_ID = section. It's faster than Select_analysis (which does the same operation Usage. Aug 27, 2015 · Copy Features handles the conversion of file formats (shp into sde-fc like in your example) simply by what workspace has been defined in the output path. However, when I ran the test below it created output that indicates that the domains associated with a feature class are copied into the in_memory workspace, and if that in_memory feature class is copied out to a new file geodatabase then the domain is re-created in Jul 3, 2017 · That is used to copy features (a point dataset containg events) from one workspace (gdb) to another. I have tried with below code import arcpy from arcpy import env env. MakeFeatureLayer_management(fc, fc+'new', '#', output, '*') just makes an in-memory layer (similar to a layer in ArcMap table of contents). gdb') What ends up happening is that the script will copy over feature classes outside of the feature datasets over to the new file gdb, but skips over feature classes in feature datasets. Dec 29, 2019 · I need to write a Python script that is copying. Jul 28, 2019 · This tool takes a table, feature class, feature layer, or raster dataset as its first argument and a list of attribute names to be deleted as its second argument. The feature classes are not identical. I want to copy submittal geodatabase feature classes into that target. CopyFeatures_management( f, os. My Scenario: We have two Geodatabases running on Oracle 11g ArcSDE 10. dbf) Microsoft Excel worksheets (. management. Alternatively, you could use the arcpy's ListFeatureClasses function if you are comfortable with Python. For example in folder "A" I have 20 folders and in each folder i have 3 geadatabases. For example, you can copy a feature class from This tool provides similar functionality to copying data from one geodatabase to another but supports copying a subset of data by setting the Extent environment, specifying a Extract Using Geometry Features parameter value, or using a selection. I've got a featureclass (fc) that I want to copy, but only retaining a selected number of fields, let's say field 9, 11, and 12 from the total of 15 fields. Deletes all or the selected subset of features from the input. The script loops through each feature class, and if it exists in the dictionary it then loops through each field. import arcpy arcpy. path. import arcpy, os adminconn = r 'C:\1\b2. This is the code: Jun 4, 2018 · When you get to the Fields page, click on the Import button at the top. The data cannot be archive enabled. Optionally specify the column names to include in the output frame. 1, I've used the "Copy Features" tool, and it looks to be the sa Oct 27, 2016 · Is there a tool or function within ArcGIS Desktop that will allow me to copy the schema to another geodatabase for selected feature classes without having to loop through them one at a time? Note: The fcList is a list of lists as in the actual script it performs a SQL query to get the list of feature classes, and this is returned as a list of In the Catalog tree, right-click the feature dataset, feature class, or table you want to copy. You can then copy and paste the list Aug 1, 2018 · I prefer using arcpy. Hope that helps! Jonathan. url_gis = # URL to AGOL or Portal. In this case, the data type is used to clarify which dataset you want to copy. You can also use the feature type to return Feature Classes, Feature datasets, CAD data, tables, or coverages ect. After that is complete, I want to copy the feature classes into one new The Copy tool can be used to make a copy of an existing geodatabase of the same type (for example, to make a copy of a file geodatabase). The location where the output feature class will be created. I want to use Python to iterate through the geodatabases and append the geodatabase name onto the end of the feature class names to make them unique. The geodatabase seems to be working apart from this though. If adding fields, repeat the above step for Fields instead of Domains. What I need to do is to loop through them and move all of them into a 'Se Mar 27, 2016 · I have a feature class within a feature dataset in a file geodatabase (FGDB), and I need a copy of it in another FGDB. Try to add the path to the name of each dataset when you establish the env. Im using this code, howe Aug 16, 2016 · yes, I was meaning that the feature classes ended up Getting transferred to the root of the file geodatabase rather than being deleted. Mar 29, 2023 · How to list all feature classes in a File Geodatabase and all features within the feature classes. Delete_management(fc) Chances are you'd never have it try to delete one that doesn't exist but this way, it keeps deleting if it DOES find one that doesn't exist (maybe you or someone else deleted it before it got there). workspace = r"C:\Data\Temp. 7. gdb/climate") CopyFeatures example 2 (stand-alone script) The following stand-alone Jan 30, 2018 · I am trying to copy multiple shape files to a file geodatabase using python. if field. Aug 2, 2015 · Objective - I have a target GDB "schema" with set feature dataset names and feature classes (no features) within them. Each feature dataset has a set of point feature classes, some for Weekdays (*WD*) and some for Weekends (*WED*): I want to merge the point feature classes into one (based on wildcard for * Jul 10, 2020 · I have a Geodatabase-file "mygdb. I have a bunch of feature classes in the root of the FGDB. fc2 = "" #feature class to copy to. Both the geometry and attributes of the Input Features will be copied to the output feature class. workspace = "C:/data" arcpy. env. gis import GIS. # Set the workspace to the geodatabase. Then if you Delete from source db the relations will be deleted but not the tables that the relations pointing to. features import FeatureLayer. If you are copying data, do this to each feature class or table that you want to copy. Jan 31, 2017 · The Geodatabases are in many nested folders. My vendor would like me not to Apr 26, 2023 · Open the ArcGIS Pro project. gdb' arcpy. gdb"+fcdesc. join(gdb_out,"Polyline_" + os. If the output location is a folder, the output will be a shapefile. The GIF format only supports single-band raster datasets. I used the feature class to feature class tool to copy the feature classes from one gdb to another and set the environment output coordinate system to state plane, but I lost all of the relationships and tables. I first reproject the target to match the submittal coordinate system. You can use Copy tool (in Data Management toolbox) to Copy the Geodatabase with domains to a new geodatabase: arcpy. Aug 14, 2023 · In the Catalog window, right-click a new geodatabase > New > Feature Class. fc = "Airports". The other might have one called "Roads" with 10,000 roads in it. Seems pretty weird. 2 for Desktop License Type: Advanced Python 2. New domains will be visible for selection. workspace value: import csv, arcpy, os from arcpy import env path_ = r"I:\J_Prashant's External HD\High Speed Rail\Task from Greg Campbell\Layers\HST_BP_GIS_Data. This is not a problem for me because I need to copy all contents, not just tables. Any value you enter is ignored. What geoprocessing tool can I use to copy a table from an ArcSDE Geodatabase to a Personal Geodatabase, keeping the feature ID (objectID)? Object holding a feature collection that implements the __geo_interface__. . DisconnectUser. The feature class in question participated in a topology, which creates a lock on that feature class that is not removed by arcpy. workspace = path_ datasetList = arcpy. Copy ("gdb_with_domains", "gdb_with_no_domains") Or, use the Copy tool in dialog: Answer by Joe Borgione Mar 10, 2015 8:43 AM - is also very good. Right-click the selected features and click Copy. This does not overwrite the property names of the input, but can ensure a consistent output format. Press and hold the Ctrl key, and select the desired feature classes. 0_v2. However, I need to update a 'copy' of this feature class within another database. I have tried a bunch of different things to no avail. Aug 30, 2012 · output = outpath + os. workspace = "c:/base/gdb. Run Append GP tool to load data. workspace = os. Sep 3, 2020 · I have looked at other the scripts to delete feature classes in Geodatabases but all I can do is remove the feature classes from the Contents window but they are still in the Geodatabase in Catalog. CopyFeatures_management("climate. It is important to note that with in the second GDB the target feature class is within a feature dataset. # Name: CopyFeatures_Example2. 5 Our SDE contains feature classes that use GlobalIDs for replication. You should then see all those fields added in. If the input is a layer with no selection, all features will be deleted. gdb" fdlist = Jun 5, 2012 · Hi Matt, It's actually a little tricky to calculate field values from one table to another outside of ArcMap. Click OK. In the Catalog tree, right-click the feature dataset, feature class, or table you want to copy. Doing this one at a time is tedious and seems easier to do in ArcMap. import arcpy. table and periods are not supported in the name of a feature class in a FGDB. The name of the output feature class. You can also extract the schema and data or schema only. #Set up workspace. Oct 7, 2016 · When you copy a feature class to an in_memory workspace then all that I would have expected you to be copying is a feature class. name, field. I have enclosed the code I am using to do one at a time. I The existing input relationship class must be based on the ObjectID field. join(path_,dataset) fcList Parameters. In the Catalog pane, right-click the geodatabase, click New, and click Feature Class to create a new feature class within the geodatabase. Dec 21, 2018 · Not only does this copy the tables, it also copies the feature classes as well as the relationship classes. I have been asked to write the Python script for query and copy the features from SDE connection1: Feature class1 to SDE connection2: Feature class2. split(root)[1])) ) Mar 8, 2016 · for fc in fclist: #Uses the describe function so below you can tell the basename fcdesc=arcpy. If those fields exist in the feature class dictionary it checks for existing domain and attaches to the field if found. Aug 11, 2020 · The video demonstrate how one can copy two feature classes from one geodatabase to another in ArcGIS Pro. FeatureClassToGeodatabase(fc, 'Z:\\GIS_Interns\\SKadri_2022\\scripts\\script_test\\bool. This parameter has been deprecated in ArcGIS AllSource. env. When I try to do the same in ArcPy, using this code Jul 29, 2019 · The interesting thing is it works for one and exactly one geodatabase in the gdb_dir folder and then it crashes. py # Description: Convert all shapefiles in a folder to geodatabase feature classes # Requirements: os module # Import system modules import arcpy from arcpy import env import os # Set environment settings env. arcpy. datasets = arcpy. On the Define page, for Name, type the new feature class name. When I test with static parameters it works fine. If the input is a layer with a selection, only the selected Mar 13, 2016 · The line arcpy. Also, I tried using lyrName in the function, and correct that doesn't help either, although maybe it's a 'better' best practice. (Optional) The type of the data on disk to be copied. gdb I want to generate a list of the feature classes in the geodatabases above. View solution in original post. ListDatasets(feature_type= 'feature' ) datasets = [ ''] + datasets if datasets is not None else [] for ds in datasets: for fc in arcpy. When Can some one please let me know how I can do simple field calculation like Copying From "A" to "B" in ArcPy? I have found lots os example on web which they all used extra expression and they were complicated. Click Finish to create the feature class. 08-05-2020 11:23 AM. check box. 408000 Copy Features Copy Features: 0:00:00. workspace = r"Database Connections\MySDEDatabaseConnection. Click Paste. Configure the parameters in the Create Feature Class pane. url_fl = # URL for feature layer to download as feature class. 3. print FC, field. One gdb might have a fc called "Roads" with 2 roads in it. Set the name and type of the feature class. Right-click the new geodatabase, and click Paste or Paste Special. workspace = "C:/data" # Set local variables outWorkspace = "c:/output/output. Jan 10, 2020 · Here are some basic steps to download a feature service layer as a feature class in a file geodatabase: from arcgis. The Paste button activates. workspace = ("D:/Planchas") workspaces = arcpy. The deletion of all features or a subset of features depends on the following: If the input is a feature class, all features will be deleted. Select the appropriate coordinate system. Copy Copy: 0:00:01. It doesn't like the iteration. CopyFeatures_management()) Here are the results: Copying 10 features. Overall, arcpy. It will skip over any errors durring the copy adn keep going. In ArcGIS 10. I am trying to copy an empty feature class to create multiple empty feature classes with various geometries. gdb" arcpy. gdb" # Use ListFeatureClasses to generate a list of shapefiles in the fields = arcpy. My arc version is 10. The Test_FC name is used in this example. ListFeatureClasses() for fc in fclist: arcpy. Share Improve this answer Summary. The problem is, I don't know how to access the FGDB Feature Classes in order to pass them to this function. shp", "C:/output/output. shp" and the raster "myraster" into that Feature Dataset with ArcPy. Apr 29, 2022 · I have 200 gdbs, with the same structure: one dataset with five features (see below) I need to copy the feature named "GSUP_USO_Vegetacao" from all 200 gdbs to another gdb, also, name the output features with "GSUP_USO_Vegetacao_name of gdb" ("GSUP_USO_Vegetacao_A1", example above) I tried using arcpy fuctions but I'm stuck in this scirpt: The following script SHOULD copy all tables, feature classes and relationships not in a dataset and also will copy over all datasets including the feature classes, topology, etc within the dataset. You can also use Copy to copy an individual dataset between two geodatabases of any type. I acknowledge that this behavior can be accomplished by exporting to a shapefile with the right environment settings, but I am not interested in using this method because of other factors (for example: truncation of field name Apr 6, 2017 · OK so here is my final code, which is tidier and works smoothly! print "Script started" print "***" print "This script will back up all grounds maintenance feature classes as shapefiles" print "***" print "The backup folder is:" print "K:\GIS2016\GIS_Data\Curo_data\Estates_data\Grounds_Maintenance\Grounds_Maintenance_Backups" #Import required modules import arcpy import os import datetime Sep 8, 2022 · I ended up solving the problem. Walk(gdb_in, datatype="FeatureClass", type="Polyline") for root, dirs, files in walk: if root != gdb_in: for f in files: arcpy. sep + f. Coordinate reference system to set on the resulting frame. The following is my code: The same applies to a feature class that has feature-linked annotation, domains, subtypes, and indices—all are copied along with the feature class. A dialog box appears that indicates what data is being copied. Alternatively, press and hold the Shift key, and select all the feature classes. gdb has Feature Classes "CountiesDissolved" and "Counties_appended" Dec 1, 2022 · I am trying to list all feature classes from multiple datasets with single GDB. Exists(fc): arcpy. xlsx) Memory-based tables; Delimited files Jul 19, 2017 · You'll also likely need to split off the database name and data owner as the feature class name will likely come across as database. Here is some sample code that I was able to get to work: import arcpy. The above code should work in ArcGIS 10 and it will print a list right in the python interpreter window. The tool copies the rows of a table, table view, feature class, feature layer, delimited file, or raster with an attribute table to a new geodatabase or dBASE table or a delimited file. from arcpy import env. fc1 = "" #Feature class to copy from. Save when done. I find that to be a good practice. This can be either a geodatabase or a folder. Cheers – Mar 24, 2017 · 1) Set the current workspace to the database connection, and then refer to the feature class by name. Dec 2, 2016 · Within each geodatabase is a polyline feature class that is not uniquely named - they are all called 'Elev_Contour'. CopyFeatures_management () is much faster Copies features from the input feature class or layer to a new feature class. Navigate to the feature class you want to import the schema from and click OK. xls and . domain. also I've just noticed that they are listed as tables rather than spatial data for some reason. owner. Reply. This tool supports the following table formats as input: Geodatabase; dBASE (. gdb" with a Feature Dataset therein, "mygdb. ListFeatureClasses example 1. Tip: You can also press Ctrl+C to copy features and Ctrl+Alt+V to open the Paste Special window. Usage. The expression is specified as Control_ID = !OBJECTID!. Use this tool to add new features or other data from multiple datasets to an existing dataset. CopyFeatures_management () over arcpy. gdb" Sep 27, 2022 · fclist=arcpy. fz wg tx ha xh ex jf lx gc ra