Generate Light Sector (Nautical)
Récapitulatif
Creates light sector features based on a specified point feature class. Light sectors typically appear on nautical charts and depict the distance a light can be seen from its source. Light sectors are based on light features in the AidsToNavigationP feature class in the ArcGIS for Maritime : Création de diagrammes.
Utilisation
-
This tool works with lights found on signal equipment in S-57 data. These features are in the AidsToNavigationP feature class.
-
The Boundary Length and Sector Arc Radius length values can be derived from the Value of Nominal Range (VALNMR) field in the AidsToNavigationP feature class, or you can type the values.
-
The Start Angle and End Angle values can be derived from the SECTR1 and SECTR2 fields from the AidsToNavigationP feature class.
-
Boundary lines and arcs can be created in page units or map units.
-
To use page units, the data must be projected and the reference scale must be set.
Syntaxe
Paramètre | Explication | Type de données |
in_features |
The feature class that contains the light features. | Feature Layer |
boundary_length |
The length of the boundary lines for the light sector. This is the line that appears on the chart. The value for the line length can be populated based on a specified value or from a field.
The length of the line is calculated in nautical miles by default. | Double;Field |
blength_unit |
The unit of measurement to use with the length of the light sector boundaries on the chart. When you choose a different unit of measurement, the length is converted from nautical miles to the units you have selected for display on the chart. You can choose from the following page and map units: nautical miles, unknown units, feet, yards, miles, millimeters, centimeters, meters, kilometers, decimal degrees, and decimeters. To use page units, the data needs to be projected and the reference scale set. | String |
sector_radius |
The value that represents where the radius for the line sectors is going to be generated in relation to the light. The arc falls between the two boundaries of the light sector. The radius is generated at a distance from the light sector using the units of measurement you select. You can either specify a value for the radius or chose a field in the feature class that contains the radius values.
| Double;Field |
radius_unit |
The unit of measurement for the radius arc that extends between the two light sector boundaries. You can choose from the following page and map units: nautical miles, unknown, points, feet, yards, miles, millimeters, centimeters, meters, kilometers, decimal degrees, and decimeters. To use page units, the data needs to be projected and the reference scale set. | String |
start_angle |
The field that contains the value that defines the angle at which the light sector begins. This value is interpreted as a bearing from the ship to the light. The angle for the light sector is calculated in decimal degrees, clockwise from the north. The value is in the SECTR1 field for S-57 data. | Field |
start_angle_unit |
The unit of measurement for the angle at which the light sector begins. It is converted from nautical miles to the unit of measurement you choose. You can choose one of the following page or map units: decimal degrees, unknown units, points, feet, yard, miles, nautical miles, millimeters, centimeters, meters, kilometers, and decimeters. By default, the value in the SECTR1 field is in decimal degrees. | String |
end_angle |
The field that contains the value that defines the angle at which the light sector ends. This value is interpreted as a bearing from the ship to the light. The angle for the light sector is calculated in decimal degrees, clockwise from the north. The value is in the SECTR2 field for S-57 data. | Field |
end_angle_unit |
The unit of measurement for the angle at which the light sector ends. It is converted from nautical miles to the unit of measurement you choose. You can choose one of the following page or map units: decimal degrees, unknown units, points, feet, yard, miles, nautical miles, millimeters, centimeters, meters, kilometers, and decimeters. By default, the value in the SECTR2 field is in decimal degrees. | String |
out_features |
The feature class to store the light sectors. You can click the Browse button to either create a new feature class in a specified database or append the new light sectors to an existing feature class. If the feature class exists, light sectors will be appended to the feature class. | Feature Layer |
output_symbol | The name of the field that stores the symbol value for the light sectors. The symbol value is associated with a symbol in the style associated with the data specification. You can click the Output Symbol Field drop-down arrow to choose an existing field or type a new field name in the text box. Remarque : The field has to be at least three characters. | String |
where_clause (Facultatif) |
An SQL expression that defines which features from the selected feature class should have light sectors generated. | SQL Expression |
angle_origin (Facultatif) |
Indicates whether the angle origin is land based or seaward.
| Boolean |
Exemple de code
The following Python window script demonstrates how to use the GenerateLightSector tool.
# input light features
inFeatures = "c:/data/nautical.sde/NIS.DBO.Nautical/NIS.DBO.AidsToNavigationP"
# boundary lenght and unit
boundaryLength = 10
boundaryLengthUnit = "Nautical Miles"
# sector radius and unit
sectorRadius = 10
sectorRadiusUnit = "Nautical Miles"
# start angle field and unit
startAngle = "SECTR1"
startAngleUnit = "Decimal Degrees"
# end angle field and unit
endAngle = "SECTR2"
endAngleUnit = "Decimal Degrees"
# output light sectors and symbols
outFeatures = "c:/data/outputNauticalData.gdb/lightSectors"
outSymbols = "lightSymbol"
# execute GenerateLightSector tool
res = arcpy.GenerateLightSector_nautical(inFeatures,boundaryLength,boundaryLengthUnit,sectorRadius,sectorRadiusUnit,startAngle,startAngleUnit,endAngle,endAngleUnit,outFeatures,outSymbols)
print "Successfully created light sectors in " + str(res.getOutput(0))