GeorefGridGenerator.Division Property
Gets or sets the division: 0 for coarse grids, 1 for medium grids, 2 for fine grids.
Syntax
public System.Int32 Division { get; set; }
Property Value
Default: 0
A number representing the coarseness of the grid.
Remarks
Different values of Division are useful in different scales. The possible values are 0, 1 and 2.
division | 0 | 1 | 2 |
---|---|---|---|
Line distances | 15° | 1° | Given by LineDistanceX and LineDistanceY in arc minutes; the default behavior depends on scale. |
Name carriers | A point feature is generated at the center of each 15° square, with an attribute value that is the two-letter name. | A point feature is generated at the center of each 1° square, with an attribute value that is the two-letter name, and an attribute fullValue that is the unique four-letter name. | Same attributes as for division 1, but the name carrier is a polygon feature that fills the 1° square. (To show the name, you can use PointVisualizer.AtCenter = True.) |
Line labels | The value attribute of a line is its longitude or latitude, formatted as a plain string. | Same as for division 0. | The value attribute of a line is its Georef minute of longitude or latitude, formatted as 00', 01', ..., 59' if LineDistanceX and LineDistanceY are integers, otherwise with 1, 2 or 3 decimals. |
Other line attributes | Only the lineType (0 for horizontal, 1 for vertical.) | Only the lineType. | The lineType, but also greatestRoundDivisor, which is the greatest round number that is a divisor of the line longitude or latitude expressed in arc minutes, from the following official list of round numbers: 900, 60, 30, 20, 15, 10, 5, 2, 1, 0.5, 0.2, 0.1, 0.05, 0.02, 0.01, 0.005, 0.002, 0.001. The attribute is a double. |
The name of the value attribute can be changed via the valueAttribute property, but there is seldom any reason to do so.
Platforms
Windows, Linux, Android