建立空间参考 ISpatialReference
轉自原文建立空間參考 ISpatialReference
?
ISpatialReferenceFactory spatialReferenceFactory = new SpatialReferenceEnvironmentClass();
ISpatialReference spatialReference = spatialReferenceFactory.CreateProjectedCoordinateSystem((int)esriSRProjCSType.esriSRProjCS_World_Mercator);//esriSRProjCS_NAD1983UTM_20N);
ISpatialReferenceResolution spatialReferenceResolution = (ISpatialReferenceResolution)spatialReference;
spatialReferenceResolution.ConstructFromHorizon();
ISpatialReferenceTolerance spatialReferenceTolerance = (ISpatialReferenceTolerance)spatialReference;
spatialReferenceTolerance.SetDefaultXYTolerance();
?
總結
以上是生活随笔為你收集整理的建立空间参考 ISpatialReference的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ArcGIS Engine 编辑介绍
- 下一篇: 绑定线程到特定CPU处理器