Read more about Data Workbench’s End-of-life announcement.
Data workbench supports both latitude-longitude projections and Universal Transverse Mercator (UTM) projections for all terrain image layer sources.
Projection information is required for raw unprojected bitmaps and general images, unprojected. You can specify projection information for images with embedded projection information, though it is usually not required because the parameters of the projection are determined automatically from geodetic data embedded in the image itself. The following sections provide details about specifying these projection formats in the Terrain Images.cfg file.
The latitude-longitude projection format (LatLonProjection) in the Terrain Images.cfg file is defined by four parameters for latitude and longitude.
To specify a LatLonProjection for unprojected images (raw unprojected bitmaps and general images, unprojected), you can enter settings for the LatLonProjection within the Terrain Images.cfg window in Data Workbench.
To specify a LatLonProjection for images with embedded projection information, you must open the Terrain Images.cfg file in a text editor such as Notepad, set the Projection Info parameter to LatLonProjection, and add settings for the LatLonProjection.
To specify a LatLonProjection for unprojected images
Parameter | Description |
---|---|
Lat0 |
The latitude of the top edge of the image, in degrees, where 90 is the North Pole and -90 is the South Pole. |
Lat1 |
The latitude of the bottom edge of the image. |
Lon0 |
The longitude of the left-hand edge of the image, in degrees, where positive numbers are east and negative numbers are west longitudes. |
Lon1 |
The longitude of the right-hand edge of the image. |
To specify a LatLonProjection for images within embedded projection information
In the Server Files Manager, click Components to view its contents. The Terrain Images.cfg file is located within this directory.
Right-click the check mark in the server name column for Terrain Images.cfg, then click Make Local. A check mark appears in the Temp column for Terrain Images.cfg.
Right-click the newly created check mark in the Temp column and click Open > in Notepad. The Terrain Images.cfg file appears in a Notepad window.
Edit the Projection Info parameters using the following sample file fragment as a guide. Be sure to specify the projection type as highlighted below. For descriptions of the parameters, see the LatLonProjection Parameters table in the previous procedure.
Projection Info = LatLonProjection:
Lat0 = double: 90
Lat1 = double: -90
Lon0 = double: -180
Lon1 = double: 180
The Universal Transverse Mercator (UTM) projection is defined by eight parameters. When specifying a Universal Transverse Mercator projection for a terrain image layer, your terrain image files must be aligned with false (projected) north towards the top of the image, and false east to the right of the image.
To specify a UTM projection for any terrain image source, you must open the Terrain Images.cfg file in a text editor such as Notepad, set the Projection Info parameter to “TransverseMercatorProjection”, and add settings for the UTM projection.
To specify a Universal Transverse Mercator projection
In the Server Files Manager, click Components to view its contents. The Terrain Images.cfg file is located within this directory.
Right-click the check mark in the server name column for Terrain Images.cfg, then click Make Local. A check mark appears in the Temp column for Terrain Images.cfg.
Right-click the newly created check mark in the Temp column and click Open > in Notepad. The Terrain Images.cfg file appears in a Notepad window.
Edit the Projection Info parameters using the following sample file fragment and parameters table as guides. Be sure to specify the projection type as highlighted below.
Projection Info = TransverseMercatorProjection:
Ellipsoid Inverse Flattening = double: 294.9786982139006
Ellipsoid Semimajor Axis = double: 6378206.4000000004
False Easting = double: 500000
False Northing = double: 0
Northwest Corner Coordinates = v3d: (550339, 5.42059e+006, 0)
Prime Meridian = double: -123
Scale Factor = double: 0.9996
Southeast Corner Coordinates = v3d: (555099, 5.41356e+006, 0)
Parameter | Description |
---|---|
Ellipsoid Inverse Flattening, Ellipsoid Semimajor Axis |
The parameters of the ellipsoid used for the projection. The semimajor axis is specified in meters. |
False Easting |
The false easting of the central meridian of the projection, in meters. For UTM, this is always 500,000. |
False Northing |
The false northing of the equator in the projection, in meters. For UTM, this is 0 for northern hemisphere zones and 10,000 for southern hemisphere zones. |
Northwest Corner Coordinates, Southeast Corner Coordinates |
The coordinates (in projected meters) of the top left and bottom right corners of the image. |
Prime Meridian |
The longitude of the central meridian of the projection, specified in degrees east of Greenwich. Negative numbers may be used to specify degrees west. |
Scale Factor |
The ratio of the radius of the projection cylinder to the semimajor axis of the ellipsoid. For Universal Transverse Mercator (UTM) projections, this is always 0.9996. |