Generate Land Areas (Maritime)

Disponible avec une licence Maritime Charting.

Synthèse

Creates land area polygon features by identifying existing land topology features, such as coastline and shoreline construction, and eliminating any polygons over water or other exclusionary features. An area of interest is specified to limit the processing area.

Utilisation

  • Only run this tool with a single usage band. In an enterprise environment, it is recommended that you run this tool on a checkout replica in which the data has been filtered to a single usage band. If running this tool in the NIS, the scale band tools can be used to isolate the data to a single usage band.

  • For the S-57 schema, the tool automatically populates the NIS_Products field to All and the PLTS_COMP_SCALE field to the current compilation scale value.

  • For the S-101 schema, the tool automatically populates the minimumDisplayScale and maximumDisplayScale fields to the current minimum and maximum values.

Paramètres

ÉtiquetteExplicationType de données
Input Workspace

The workspace containing a Maritime product schema (S-57 or S-101 based) in which existing land topology features, such as coastline and shoreline construction, will be processed to identify the land areas that will be created.

Workspace
Target Workspace

The workspace that will contain the land area polygons that are created. The workspace must be a Nautical workspace with S-57 or S-101 schema. For S-57 schema, the workspace should have a NaturalFeaturesA polygon feature class with a LNDARE_LandArea subtype. For S-101 schema, the workspace should have a LandArea_A polygon feature class.

Workspace
Extent Polygon Features

The extent polygon in which the land area polygons will be generated.

Feature Layer
Configuration File
(Facultatif)

The location of an .xml configuration file that lists the feature classes that will participate in defining the land topology edges and the feature classes that indicate areas where land should not exist. If not specified, the default GenerateLandAreasSettings.xml configuration file will be used.

File

Sortie obtenue

ÉtiquetteExplicationType de données
Updated Land Areas

The updated Land Areas feature class.

Feature Layer

arcpy.maritime.GenerateLandAreas(in_workspace, target_workspace, in_extent_polygon, {in_configuration_file})
NomExplicationType de données
in_workspace

The workspace containing a Maritime product schema (S-57 or S-101 based) in which existing land topology features, such as coastline and shoreline construction, will be processed to identify the land areas that will be created.

Workspace
target_workspace

The workspace that will contain the land area polygons that are created. The workspace must be a Nautical workspace with S-57 or S-101 schema. For S-57 schema, the workspace should have a NaturalFeaturesA polygon feature class with a LNDARE_LandArea subtype. For S-101 schema, the workspace should have a LandArea_A polygon feature class.

Workspace
in_extent_polygon

The extent polygon in which the land area polygons will be generated.

Feature Layer
in_configuration_file
(Facultatif)

The location of an .xml configuration file that lists the feature classes that will participate in defining the land topology edges and the feature classes that indicate areas where land should not exist. If not specified, the default GenerateLandAreasSettings.xml configuration file will be used.

File

Sortie obtenue

NomExplicationType de données
updated_land_areas

The updated Land Areas feature class.

Feature Layer

Exemple de code

GenerateLandAreas example (stand-alone script)

The following stand-alone script demonstrates how to use the GenerateLandAreas function.

# Import arcpy module
import arcpy

in_workspace = r"C:\Data\GLA\enc.gdb"
target_workspace = r"C:\Data\GLA\enc.gdb"
in_extent_polygon = r"C:\Data\GLA\staging.gdb\Extent"
in_configuration_file = r"C:\ArcGISPro\Resources\Maritime\GenerateLandAreasSettings.xml"

arcpy.maritime.GenerateLandAreas(in_workspace, target_workspace, in_extent_polygon, in_configuration_file)

Environnements

Cet outil n’utilise pas d’environnement de géotraitement.

Informations de licence

  • Basic: Non
  • Standard: Nécessite ArcGIS Maritime
  • Advanced: Nécessite ArcGIS Maritime

Rubriques connexes