Class TLcdUTM

java.lang.Object
com.luciad.projection.TLcdUTM
All Implemented Interfaces:
ILcdCompositeProjection, Serializable

public class TLcdUTM extends Object implements ILcdCompositeProjection
Deprecated.
Use the new TLcdUTMGridSystem.
Universal Transverse Mercator projection.

Introduction

This projection is used for the UTM grid system. Within this system the earth is divided in several zones, each of which is based on a specifically defined transverse Mercator projection.

The valid area for this projection is between NORTH_LAT_LIMIT and SOUTH_LAT_LIMIT latitude.

Sample code


 int projectionIndex = utm.retrieveZone( new TLcdLonLatPoint( -40.0, 20.0 ) );
 ILcdProjection projection =
     utm.retrieveProjection( projectionIndex );
 
See Also:
  • Field Details

    • NORTH_LAT_LIMIT

      public static final double NORTH_LAT_LIMIT
      Deprecated.
      The northern limit for the valid area of this projection.
      See Also:
    • SOUTH_LAT_LIMIT

      public static final double SOUTH_LAT_LIMIT
      Deprecated.
      The southern limit for the valid area of this projection.
      See Also:
  • Constructor Details

    • TLcdUTM

      public TLcdUTM()
      Deprecated.
  • Method Details