Validate S-57 File (Maritime)

Mit der ArcGIS Maritime-Lizenz verfügbar.

Zusammenfassung

Validates an ENC, IENC, or bIENC file and generates an .S58 file and a shapefile as a result.

Verwendung

  • Multiple revision (ER) files, also known as updates, must be validated at the same time as the base file. Individual ER files cannot be validated at a later time.

  • A new edition (EN) base file can be validated.

  • A catalog file (.031) can be validated. When a catalog file is chosen for validation, only the S-58 checks pertaining to the Exchange Set value or data structure will be run.

  • By default, the tool will output a shapefile and an .s58 file in XML format that contain S-58 errors discovered during the validation process. If you do not need the shapefile, you can exclude it.

  • An ignore list text file can be used to disable specific S-58 checks.

  • A sample ignore list text file is available at <install location>\Resources\Maritime\S-58IgnoreList.txt.

    Hinweis:

    Remove the number sign (#) from the beginning of the line for each check you want to ignore.

Parameter

BeschriftungErläuterungDatentyp
Input S-57 File

The base cell file (*.000).

File
Output Directory

The location where the validated S-57 log will be created.

Folder
Update Cells
(optional)

The update cell files (*.001 - *.999).

File
Regional Rules
(optional)

Specifies the region that will be used to set the Recommended Inland ENC Validation Checks for that region.

For IENC and bIENC cells, some validation rules don't apply in certain regions, or they check for different objects and attribution.

  • BrazilBrazilian validation rules will be applied.
  • EuropeEuropean validation rules will be applied.
  • Russian FederationRussian Federation validation rules will be applied.
  • United StatesUnited States validation rules will be applied.
String
Ignore List
(optional)

A text file containing a list of checks to ignore in the output log file.

File
Exclude Shapefile
(optional)

Specifies whether a shapefile will be generated.

  • Checked—A shapefile will not be generated. Only the .s58 file will be created.
  • Unchecked—A shapefile will be generated, along with the .s58 file. This is the default.

Boolean

Abgeleitete Ausgabe

BeschriftungErläuterungDatentyp
Output S-58 Log File

The .S58 file in XML format that contains the errors and warnings from the validation.

File

arcpy.maritime.ValidateS57File(in_s57_file, out_directory, {in_update_cells}, {regional_rules}, {in_ignore_list}, {exclude_shapefile})
NameErläuterungDatentyp
in_s57_file

The base cell file (*.000).

File
out_directory

The location where the validated S-57 log will be created.

Folder
in_update_cells
[in_update_cells,...]
(optional)

The update cell files (*.001 - *.999).

File
regional_rules
(optional)

Specifies the region that will be used to set the Recommended Inland ENC Validation Checks for that region.

For IENC and bIENC cells, some validation rules don't apply in certain regions, or they check for different objects and attribution.

  • BRBrazilian validation rules will be applied.
  • EUEuropean validation rules will be applied.
  • RURussian Federation validation rules will be applied.
  • USUnited States validation rules will be applied.
String
in_ignore_list
(optional)

A text file containing a list of checks to ignore in the output log file.

File
exclude_shapefile
(optional)

Specifies whether a shapefile will be generated.

  • EXCLUDE_SHAPEFILEA shapefile will not be generated. Only the .s58 file will be created.
  • DO_NOT_EXCLUDE_SHAPEFILEA shapefile will be generated, along with the .s58 file. This is the default.
Boolean

Abgeleitete Ausgabe

NameErläuterungDatentyp
out_log_file

The .S58 file in XML format that contains the errors and warnings from the validation.

File

Codebeispiel

ValidateS57File example (Python window)

The following Python window script demonstrates how to use the ValidateS57File function.

# Import arcpy module
import arcpy
    
# Tool variables
base_cell = r"C:\ValidateS57file\US3CA52M.000"
output_path = r"C:\ValidateS57file"
update_cells = [r"C:\ValidateS57file\US3CA52M.001", r"C:\ValidateS57file\US3CA52M.002"]
regional_rule = "" 
ignore_list = r"C:\Program Files\ArcGIS\Pro\Resources\Maritime\S-58IgnoreList.txt"
shapefile = "EXCLUDE_SHAPEFILE" 

# Run the tool
arcpy.maritime.ValidateS57File(base_cell, output_path, update_cells, regional_rule, ignore_list, shapefile)

Lizenzinformationen

  • Basic: Nein
  • Standard: Erfordert ArcGIS Maritime
  • Advanced: Erfordert ArcGIS Maritime

Verwandte Themen