我在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);