core/vcsl/vcsl_lambertian.h
Go to the documentation of this file.
00001 #ifndef vcsl_lambertian_h_
00002 #define vcsl_lambertian_h_
00003 //:
00004 // \file
00005 // \brief Lambert Conformal Conic Projection
00006 // \author François BERTEL
00007 //
00008 // \verbatim
00009 //  Modifications
00010 //   2000/06/30 François BERTEL Creation. Adapted from IUE
00011 //   2001/04/10 Ian Scott (Manchester) Converted perceps header to doxygen
00012 // \endverbatim
00013 
00014 #include <vcsl/vcsl_geographic.h>
00015 #include <vcsl/vcsl_lambertian_sptr.h>
00016 
00017 //: Lambert Conformal Conic Projection
00018 // Coordinate system in which shapes are preserved while scale is nonuniform.
00019 // Coordinates are specified in terms of x, y, and z, where z is the altitude
00020 // above the surface of the reference ellipsoid (or sphere).
00021 class vcsl_lambertian
00022   : public vcsl_geographic
00023 {
00024   //***************************************************************************
00025   // Constructors/Destructor
00026   //***************************************************************************
00027 
00028   // Default constructor.
00029   vcsl_lambertian();
00030 
00031  public:
00032   // Destructor
00033   virtual ~vcsl_lambertian() {}
00034 };
00035 
00036 #endif // vcsl_lambertian_h_