麻辣GIS微信平台

更多 GIS 干货

微信关注不错过

ArcGIS Engine 10 开发手册(5-15)同一基准面的坐标转换

对于同一基准面,我们可以肯定一点就是同一位置经纬度坐标是一样的,而不同的就是计算成平面坐 标的时候可能有所不同,因为算法不一样,在这里我只是将经纬度坐标转成平面的坐标。

private IPoint GetpProjectPoint (IPoint pPoint, bool pBool)

{

  ISpatialReferenceFactory pSpatialReferenceEnvironemnt = new SpatialReferenceEnvironment ();

  ISpatialReference pFromSpatialReference = pSpatialReferenceEnvironemnt.CreateGeographicCoordinateSystem ((int) esriSRGeoCS3Type.esriSRGeoCS_Xian1980); //西安80

  ISpatialReference pToSpatialReference = pSpatialReferenceEnvironemnt.CreateProjectedCoordinateSystem ((int) esriSRProjCS4Type.esriSRProjCS_Xian1980_3_Degree_GK_Zone_34); //西安80
  if (pBool == true)//球面转平面
  {
    IGeometry pGeo = (IGeometry) pPoint;
    pGeo.SpatialReference = pFromSpatialReference;
    pGeo.Project (pToSpatialReference);
    return pPoint;
  } 
  else //平面转球面
  {
    IGeometry pGeo = (IGeometry) pPoint;
    pGeo.SpatialReference = pToSpatialReference;
    pGeo.Project (pFromSpatialReference);
    return pPoint;
  }
}

ArcGIS Engine 10 开发手册全集

ArcGIS Engine 10 开发手册全集: ArcGIS Engine 10 开发手册

相关阅读

麻辣GIS-Sailor

作者:

GIS爱好者,学GIS,更爱玩GIS。

声明

1.本文所分享的所有需要用户下载使用的内容(包括但不限于软件、数据、图片)来自于网络或者麻辣GIS粉丝自行分享,版权归该下载资源的合法拥有者所有,如有侵权请第一时间联系本站删除。

2.下载内容仅限个人学习使用,请切勿用作商用等其他用途,否则后果自负。

手机阅读
公众号关注
知识星球
手机阅读
麻辣GIS微信公众号关注
最新GIS干货
关注麻辣GIS知识星球
私享圈子

留言板(小编看到第一时间回复)