|
GLG Toolkit, Java Class Library
Version 4.6
|
UTM MGRS utility class. More...
UTM MGRS utility class.
This class provides methods for converting between the UTM and lat/lon GIS coordinate systems.
Static Public Member Functions | |
| static void | LatLonToUtm (double lat, double lon, GlgUtmPoint utm_point) |
| Lat/Lon to UTM coordinate conversion utility. More... | |
| static void | LatLonToUtm (GlgLatLonPoint lat_lon_point, GlgUtmPoint utm_point) |
| Lat/Lon to UTM coordinate conversion utility. More... | |
| static int | MgrsToUtm (String mgrs_coord, GlgUtmPoint utm_point) |
| MGRS to UTM coordinate conversion utility. More... | |
| static boolean | UtmToLatLon (GlgUtmPoint utm_point, GlgLatLonPoint lat_lon) |
| UTM to Lat/Lon coordinate conversion utility. More... | |
| static String | UtmToMgrs (GlgUtmPoint utm_point, int accuracy) |
| UTM to MGRS coordinate conversion utility. More... | |
Static Public Attributes | |
| static final int | GLM_10000_METER = 1 |
| Accuracy constant. More... | |
| static final int | GLM_1000_METER = 2 |
| Accuracy constant. More... | |
| static final int | GLM_100_METER = 3 |
| Accuracy constant. More... | |
| static final int | GLM_10_METER = 4 |
| Accuracy constant. More... | |
| static final int | GLM_1_METER = 5 |
| Accuracy constant. More... | |
| static final int | GLM_FAILED_ACCURACY = -1 |
| Accuracy constant indicating a failed coordinate conversion. More... | |
|
static |
Accuracy constant.
|
static |
Accuracy constant.
|
static |
Accuracy constant.
|
static |
Accuracy constant.
|
static |
Accuracy constant.
|
static |
Accuracy constant indicating a failed coordinate conversion.
|
static |
Lat/Lon to UTM coordinate conversion utility.
| lat | coordinate to be converted. |
| lon | coordinate to be converted. |
| utm_point | utm point to receive converted coordinates. |
|
static |
Lat/Lon to UTM coordinate conversion utility.
| lat_lon_point | lat/lon coordinates to be converted. |
| utm_point | utm point to receive converted coordinates. |
|
static |
MGRS to UTM coordinate conversion utility.
| mgrs_coord | MGRS coordinate string to be converted. |
| utm_point | utm point to be filled with the converted utm coordinates. |
|
static |
UTM to Lat/Lon coordinate conversion utility.
| utm_point | utm coordinates to be converted. |
| lat_lon | lat/lon point to receive converted coordinates. |
|
static |
UTM to MGRS coordinate conversion utility.
| utm_point | utm coordinates to be converted. |
| accuracy | An accuracy constant to specify accuracy of the coordinate conversion. |