You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
546 B
C++

/////////////////////////////////////////////////////////////////////////////
//文件: Projection.cpp
//主要功能:
// 投影转换
//
//程序编写: 2009-8-11
//
//
/////////////////////////////////////////////////////////////////////////////
#pragma once
#include "ellipsoid.h"
//***************************** 亚尔勃斯投影 *******************
class AFX_EXT_CLASS CProjectionAlbers :
public CEllipsoid
{
public:
CProjectionAlbers(void);
virtual ~CProjectionAlbers(void);
void GetBL(double &x,double &y);
void GetXY(double &B,double &L);
};