vcsl_utm.h
Go to the documentation of this file.
1 #ifndef vcsl_utm_h_
2 #define vcsl_utm_h_
3 //:
4 // \file
5 // \brief Universal Transverse Mercator projection
6 // \author Francois BERTEL
7 //
8 // \verbatim
9 // Modifications
10 // 2000/06/29 Francois BERTEL Creation. Adapted from IUE
11 // 2001/04/10 Ian Scott (Manchester) Converted perceps header to doxygen
12 // \endverbatim
13 
14 #include <vcsl/vcsl_geographic.h>
15 #include <vcsl/vcsl_utm_sptr.h>
16 
17 //: Universal Transverse Mercator projection
18 // Coordinate system in which a point is specified by a grid zone designation,
19 // an x and y coordinate within the grid zone, and z, the height above the
20 // surface of the reference ellipsoid
21 class vcsl_utm
22  : public vcsl_geographic
23 {
24  private:
25  //***************************************************************************
26  // Constructors/Destructor
27  //***************************************************************************
28 
29  // Default constructor.
30  vcsl_utm();
31 
32  public:
33  // Destructor
34  ~vcsl_utm() override = default;
35 };
36 
37 #endif // vcsl_utm_h_
~vcsl_utm() override=default
vcsl_utm()
Definition: vcsl_utm.cxx:8
Represent a location relative to the earth.
Universal Transverse Mercator projection.
Definition: vcsl_utm.h:21
Represent a location relative to the earth.