码迷,mamicode.com
首页 > 其他好文 > 详细

CAD与GIS转换:注记转换及角度问题

时间:2015-06-05 15:27:00      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:

CAD注记旋转方向用的是弧度;

GIS注记旋转方向用的是角度;

二者使用需要转换。

 

示例过程:

一、GIS注记转CAD

1.1获得GIS注记文字、尺寸、角度

IAnnotationFeature pAnnoFeature = pFeature as IAnnotationFeature;
ITextElement pTextElement = pAnnoFeature.Annotation as ITextElement;
string pAnnoText = pTextElement.Text;
double pAnnoSize = pTextElement.Symbol.Size;
 double pAnnoAngle = pTextElement.Symbol.Angle;

1.2 在CAD中插入AcadText

double[] pCenterPoint=new double[3];
pCenterPoint[0] = (pElement.Geometry.Envelope.XMin + pElement.Geometry.Envelope.XMax)/2;
pCenterPoint[1] = (pElement.Geometry.Envelope.YMin + pElement.Geometry.Envelope.YMax) / 2;
pCenterPoint[2] = 0;

AcadText pAcadText = CadModelSpace.AddText(pAnnoText, pCenterPoint, textHeight);

 

1.3从GIS获得注记角度需要转换为弧度

double anlgeReal = pAnnoAngle * Math.PI / 180;
pAcadText.Rotate(pCenterPoint, anlgeReal);

 

CAD与GIS转换:注记转换及角度问题

标签:

原文地址:http://www.cnblogs.com/GISRSMAN/p/4554547.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!