GeoNames To Geodatabase (Topographic Production)

サマリー

Loads GeoNames data into a feature class and table. The feature class is composed of point features, and the table contains fields with information concerning the naming conventions used for the features. The feature class contains the Unique Feature Identifier (UFI) and Unique Name Identifier (UNI), which match the same fields in the GeoNames table.

使用法

  • Before loading the GeoNames data into your database, the feature class and table must already exist.

  • If your organization already has a GeoNames database, this database may be used as long as it contains the UFI and UNI fields.

パラメーター

ラベル説明データ タイプ
GeoNames Source File

Path to the source file containing GeoNames information. This needs to be a properly formatted GeoNames file.

Shapefile; Text File
GeoNames Feature Class Name

The GeoNames feature class; this feature class should be in the working database.

Feature Class
Allow Duplicates

Allows duplicate features in the GeoNames feature class.

  • Checked—Allows the tool to import features even if there is already an entry in the GeoNames feature class and table.
  • Unchecked—Prevents the tool from importing features if there is another feature with the same geometry and attributes in the GeoNames feature class or GeoNames table. This is the default.

  • Allow duplicatesAllows the tool to import features even if there is already an entry in the GeoNames feature class and table.
  • Do not allow duplicatesPrevents the tool from importing features if there is another feature with the same geometry and attributes in the GeoNames feature class or GeoNames table. This is the default.
Boolean
GeoNames Table Name

The GeoNames table. This table should be in the working database.

Table

派生した出力

ラベル説明データ タイプ
Out feature class

Output feature class containing GeoName features.

Feature Class
Out table

Output table containing attribution for GeoName features.

Table

arcpy.topographic.GeoNamesToGeodatabase(in_source, in_feature_class, in_allow_duplicates, in_table)
名前説明データ タイプ
in_source

Path to the source file containing GeoNames information. This needs to be a properly formatted GeoNames file.

Shapefile; Text File
in_feature_class

The GeoNames feature class; this feature class should be in the working database.

Feature Class
in_allow_duplicates

Allows duplicate features in the GeoNames feature class.

  • ALLOW_DUPLICATESAllows the tool to import features even if there is already an entry in the GeoNames feature class and table.
  • DON'T_ALLOW_DUPLICATESPrevents the tool from importing features if there is another feature with the same geometry and attributes in the GeoNames feature class or GeoNames table. This is the default.
Boolean
in_table

The GeoNames table. This table should be in the working database.

Table

派生した出力

名前説明データ タイプ
out_featureclass

Output feature class containing GeoName features.

Feature Class
out_table

Output table containing attribution for GeoName features.

Table

コードのサンプル

GeoNamesToGeodatabase example (stand-alone script)

The following stand-alone script demonstrates how to use the GeoNamesToGeodatabase tool to import GeoNames from a properly formatted text file to a selected GeoNames feature class and table.

# Name: GeoNamesToGeodatabase_sample.py
# Description: Use the GeoNames To Geodatabase tool to import GeoNames from a properly formatted text file to a selected GeoNames feature class and table

# Import System Modules
import arcpy

# Check Out Extensions
arcpy.CheckOutExtension('Foundation')

# Setting Local Variables
source_file = r'C:\Temp\al_populatedplaces_p.txt'
feature_class = r'C:\Temp\Geonames_Template.gdb\GeoNames_FeaturesP'
in_table = r'C:\Temp\Geonames_Template.gdb\GEONAMES_TABLE'

# Use the GeoNames To Geodatabase tool to import GeoNames from a properly formatted text file
arcpy.topographic.GeoNamesToGeodatabase(source_file, feature_class, 'DONT_ALLOW_DUPLICATES', in_table)

# Check In Extensions
arcpy.CheckInExtension('Foundation')

環境

このツールは、ジオプロセシング環境を使用しません。

ライセンス情報

  • Basic: No
  • Standard: 次のものが必要 Production Mapping
  • Advanced: 次のものが必要 Production Mapping

関連トピック