在C ++中,使用GDAL库,计算两点之间的距离

时间:2015-04-25 17:44:40

标签: c++ distance gdal points

我在C ++中编码,使用GDAL库,使用WGS84。你如何计算两点之间的距离(米)?下面的代码片段返回值1.0000。

OGRSpatialReference  wgs84;
OGRPoint         point1,
             point2;

assert(wgs84.SetWellKnownGeogCS("WGS84")==OGRERR_NONE);
point1.assignSpatialReference(&wgs84);
point2.assignSpatialReference(&wgs84);
point1.setY(25.0000); point1.setX(75.0000);
point2.setY(25.0000); point2.setX(76.0000);

0 个答案:

没有答案