GuanDianXinZeng.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487
  1. using Sunny.UI;
  2. using SuperMap.Data;
  3. using SuperMap.Mapping;
  4. using System;
  5. using System.Drawing;
  6. using WeifenLuo.WinFormsUI.Docking;
  7. using WWPipeLine.MapBasic.Conditions;
  8. using System.Windows.Forms;
  9. using WWPipeLine.MapBasic;
  10. namespace WWPipeLine.MapTools.Conditions.EditGuanWang
  11. {
  12. public class GuanDianXinZeng : ConditionPanel
  13. {
  14. private GeoPoint _geoPoint = null;
  15. private UICheckBox uiCBpol;
  16. private LayerWithDataListPanel LayerPanel;
  17. private Panel panel1;
  18. private Label label1;
  19. private TextBox textBoxX;
  20. private Label label2;
  21. private TextBox textBoxY;
  22. private Button button1;
  23. private int gxSMID = 0;
  24. public GuanDianXinZeng() : base()
  25. {
  26. this.ConditionPanelName = "新增管点信息";
  27. this.SetSize(300, 550);
  28. InitializeComponent();
  29. this.IsShowResultWindow = false;
  30. LayerPanel = new LayerWithDataListPanel();
  31. LayerPanel.LoadToVector(false, false);
  32. panel1.Controls.Add(LayerPanel);
  33. }
  34. protected override void OnLoad(EventArgs e)
  35. {
  36. MapControl.MouseDoubleClick += MapControl_MouseDoubleClick;
  37. }
  38. private void MapControl_MouseDoubleClick(object sender, MouseEventArgs e)
  39. {
  40. if (LayerPanel.SelectLayers.Count != 1)
  41. {
  42. Sunny.UI.UIMessageTip.ShowError("请选择需要编辑的图层"); return;
  43. }
  44. Point2D pClick = MapControl.Map.PixelToMap(new Point(e.X, e.Y));
  45. //限制线上点(即执行管线打断功能)
  46. if (uiCBpol.Checked)
  47. {
  48. GeoPoint pointClick = new GeoPoint(pClick);
  49. Recordset rdJSLK = ComsStatic.gsGuanXian.Query(pointClick, 3, CursorType.Static);
  50. if (rdJSLK.RecordCount == 0)
  51. {
  52. Sunny.UI.UIMessageTip.ShowError("当前鼠标双击点附近没有找到管线信息"); return;
  53. }
  54. double distance_temp = 0.0D;
  55. double distance = 0.0D;
  56. GeoLine _rd_temp;
  57. GeoLine _rd_line = new GeoLine();
  58. rdJSLK.MoveFirst();
  59. while (!rdJSLK.IsEOF)
  60. {
  61. _rd_temp = rdJSLK.GetGeometry() as GeoLine;
  62. distance_temp = Geometrist.Distance(pointClick, _rd_temp);
  63. if (distance_temp <= distance || distance == 0.0D)
  64. {
  65. distance = distance_temp;
  66. _rd_line = _rd_temp;
  67. gxSMID = Int32.Parse(rdJSLK.GetFieldValue("smid").ToString());
  68. }
  69. rdJSLK.MoveNext();
  70. }
  71. ComsStatic.RecordsetDispose(rdJSLK);
  72. pClick = Geometrist.NearestPointToVertex(pClick, _rd_line);
  73. //bool PointOnLine = Geometrist.HasCommonPoint(new GeoPoint(pClick), _rd_line);
  74. }
  75. #region 限制于节点重合 已取消该功能
  76. //if (uiCheckBox1.Checked)//限制于节点重合
  77. //{
  78. // GeoPoint pointClick = new GeoPoint(pClick);
  79. // Recordset rdJSJDPT = ComsStatic.gsGuanDian.Query(pointClick, 3, CursorType.Static);
  80. // if (rdJSJDPT.RecordCount == 0)
  81. // {
  82. // Sunny.UI.UIMessageTip.ShowError("当前鼠标双击点附近没有找到节点信息"); return;
  83. // }
  84. // double distance_temp = 0.0D;
  85. // double distance = 0.0D;
  86. // GeoPoint p_temp;
  87. // rdJSJDPT.MoveFirst();
  88. // while (!rdJSJDPT.IsEOF)
  89. // {
  90. // p_temp = rdJSJDPT.GetGeometry() as GeoPoint;
  91. // distance_temp = Geometrist.Distance(pointClick, p_temp);
  92. // if (distance_temp <= distance || distance == 0.0D)
  93. // {
  94. // distance = distance_temp;
  95. // pClick = p_temp.InnerPoint;
  96. // }
  97. // rdJSJDPT.MoveNext();
  98. // }
  99. //}
  100. #endregion
  101. _geoPoint = new GeoPoint(pClick);
  102. _geoPoint.Style = ComsStatic.geoStyle_Red_Mark5mm;
  103. MapControl.Map.TrackingLayer.Clear();
  104. MapControl.Map.TrackingLayer.Add(_geoPoint, "jiedian");
  105. MapControl.Map.RefreshTrackingLayer();
  106. }
  107. public override object Do(DockPanel dockPanel = null)
  108. {
  109. if (LayerPanel.SelectLayers.Count != 1 || _geoPoint is null)
  110. {
  111. Sunny.UI.UIMessageTip.ShowError("请选择需要新增节点的图层,并在界面中点选节点位置"); return false;
  112. }
  113. EditHistory m_EditHistory = new EditHistory();
  114. m_EditHistory.Capacity = 5;
  115. Layer lyr = LayerPanel.SelectLayers[0];
  116. Int32 objID = ComsStatic.GetMaxValueInt(ComsStatic.gsGuanDian, "objectid") + 1;
  117. string bsmGDNew = lyr.Dataset.Name + objID;
  118. Recordset rdGD = ComsStatic.gsGuanDian.GetRecordset(true, CursorType.Dynamic);
  119. rdGD.AddNew(_geoPoint);
  120. m_EditHistory.Add(SuperMap.Data.EditType.AddNew, rdGD, false);
  121. m_EditHistory.Add(SuperMap.Data.EditType.Modify, rdGD, false);
  122. rdGD.Edit();
  123. rdGD.SetFieldValue("x", _geoPoint.X);
  124. rdGD.SetFieldValue("y", _geoPoint.Y);
  125. rdGD.SetFieldValue("lrrq", DateTime.Now.ToLocalTime());
  126. rdGD.SetFieldValue("bsm", bsmGDNew);
  127. rdGD.SetFieldValue("fldm", lyr.Caption);
  128. rdGD.SetFieldValue("objectid", objID);
  129. //限制线上点(即执行管线打断功能)
  130. if (uiCBpol.Checked)
  131. {
  132. if (gxSMID == 0)
  133. {
  134. Sunny.UI.UIMessageTip.ShowError("请先勾选“限制线上点”后再双击确认位置!"); return false;
  135. }
  136. try
  137. {
  138. //1 新增 节点信息
  139. rdGD.SetFieldValue("cqbh", "管点新增且打断管线-新增节点");
  140. if (rdGD.Update())
  141. {
  142. Commons.LogHelper.Info("管点新增且打断管线-新增管线节点成功。新节点标识码" + bsmGDNew);
  143. }
  144. else
  145. {
  146. ComsStatic.EditHistoryUndo(m_EditHistory);
  147. ComsStatic.ShowErrorLog(lyr.Caption + "新增失败", "管点新增且打断管线-新增管线节点失败 ");
  148. return false;
  149. }
  150. //2 用新增的节点 打断管线 参考打断管线的预览打断管线功能
  151. Recordset rsGXyuan = ComsStatic.gsGuanXian.Query(new int[] { gxSMID }, CursorType.Dynamic);
  152. Recordset rsGDtemp = ComsStatic.gsGuanDian.Query(string.Format("bsm='{0}'", rsGXyuan.GetString("qsdh")), CursorType.Static);
  153. if (rsGDtemp.RecordCount != 1)
  154. {
  155. ComsStatic.EditHistoryUndo(m_EditHistory);
  156. ComsStatic.ShowErrorLog(lyr.Caption + "新增失败", "管点新增且打断管线-管线起始点号不存在 " + rsGXyuan.GetString("qsdh"));
  157. return false;
  158. }
  159. Point2D startPoint = new Point2D(rsGDtemp.GetDouble("x"), rsGDtemp.GetDouble("y"));
  160. rsGDtemp = ComsStatic.gsGuanDian.Query(string.Format("bsm='{0}'", rsGXyuan.GetString("zddh")), CursorType.Static);
  161. if (rsGDtemp.RecordCount != 1)
  162. {
  163. ComsStatic.EditHistoryUndo(m_EditHistory);
  164. ComsStatic.ShowErrorLog(lyr.Caption + "新增失败", "管点新增且打断管线-管线终点点号不存在 " + rsGXyuan.GetString("zddh"));
  165. return false;
  166. }
  167. Point2D endPoint = new Point2D(rsGDtemp.GetDouble("x"), rsGDtemp.GetDouble("y"));
  168. ComsStatic.RecordsetDispose(rsGDtemp);
  169. //3 新增 起始管线
  170. Recordset _rd = ComsStatic.gsGuanXian.GetRecordset(true, CursorType.Dynamic);
  171. GeoLine geoLine = new GeoLine(new Point2Ds(new Point2D[] { startPoint, _geoPoint.InnerPoint }));
  172. _rd.AddNew(geoLine);
  173. m_EditHistory.Add(SuperMap.Data.EditType.AddNew, _rd, false);
  174. m_EditHistory.Add(SuperMap.Data.EditType.Modify, _rd, false);
  175. _rd.Edit();
  176. _rd.SetFieldValue("qsdh", rsGXyuan.GetString("qsdh"));
  177. _rd.SetFieldValue("zddh", bsmGDNew);
  178. _rd.SetFieldValue("lrrq", DateTime.Now.ToLocalTime());
  179. _rd.SetFieldValue("gj", rsGXyuan.GetInt16("gj"));
  180. objID = ComsStatic.GetMaxValueInt(ComsStatic.gsGuanXian, "objectid") + 1;
  181. _rd.SetFieldValue("objectid", objID);
  182. _rd.SetFieldValue("fldm", ComsStatic.dvGXCaption);
  183. _rd.SetFieldValue("bsm", ComsStatic.dvGXDatasetName + objID);
  184. _rd.SetFieldValue("cd", ComsStatic.StringToDouble(geoLine.Length, 2));
  185. _rd.SetFieldValue("shape_length", geoLine.Length);
  186. _rd.SetFieldValue("cqbh", "管点新增且打断管线-新增起始管线");
  187. if (_rd.Update())
  188. {
  189. Commons.LogHelper.Info(string.Format("管点新增且打断管线-新增起始管线成功 {0}。", ComsStatic.dvGXDatasetName + objID));
  190. }
  191. else
  192. {
  193. ComsStatic.EditHistoryUndo(m_EditHistory);
  194. ComsStatic.ShowErrorLog(lyr.Caption + "新增失败", "管点新增且打断管线-新增起始管线失败 "); return false;
  195. }
  196. //4 新增 结束管线
  197. _rd = ComsStatic.gsGuanXian.GetRecordset(true, CursorType.Dynamic);
  198. geoLine = new GeoLine(new Point2Ds(new Point2D[] { _geoPoint.InnerPoint, endPoint }));
  199. _rd.AddNew(geoLine);
  200. m_EditHistory.Add(SuperMap.Data.EditType.AddNew, _rd, false);
  201. m_EditHistory.Add(SuperMap.Data.EditType.Modify, _rd, false);
  202. _rd.Edit();
  203. _rd.SetFieldValue("qsdh", bsmGDNew);
  204. _rd.SetFieldValue("zddh", rsGXyuan.GetString("zddh"));
  205. _rd.SetFieldValue("lrrq", DateTime.Now.ToLocalTime());
  206. _rd.SetFieldValue("gj", rsGXyuan.GetInt16("gj"));
  207. objID = ComsStatic.GetMaxValueInt(ComsStatic.gsGuanXian, "objectid") + 1;
  208. _rd.SetFieldValue("objectid", objID);
  209. _rd.SetFieldValue("fldm", ComsStatic.dvGXCaption);
  210. _rd.SetFieldValue("bsm", ComsStatic.dvGXDatasetName + objID);
  211. _rd.SetFieldValue("cd", ComsStatic.StringToDouble(geoLine.Length, 2));
  212. _rd.SetFieldValue("shape_length", geoLine.Length);
  213. _rd.SetFieldValue("cqbh", "管点新增且打断管线-新增结束管线");
  214. if (_rd.Update())
  215. {
  216. Commons.LogHelper.Info(string.Format("管点新增且打断管线-新增结束管线成功 {0}。", ComsStatic.dvGXDatasetName + objID));
  217. }
  218. else
  219. {
  220. ComsStatic.EditHistoryUndo(m_EditHistory);
  221. ComsStatic.ShowErrorLog(lyr.Caption + "新增失败", "管点新增且打断管线-新增结束管线失败 "); return false;
  222. }
  223. //5 删除 原管线
  224. m_EditHistory.Add(SuperMap.Data.EditType.Delete, rsGXyuan, false);
  225. if (rsGXyuan.Delete())
  226. {
  227. (lyr.Dataset as DatasetVector).Append(rdGD);
  228. ComsStatic.ShowOKLog(lyr.Caption + "新增成功", string.Format("删除管线{0},新增节点{1}", gxSMID, bsmGDNew));
  229. }
  230. else
  231. {
  232. ComsStatic.EditHistoryUndo(m_EditHistory);
  233. ComsStatic.ShowErrorLog("原管线删除失败!"); return false;
  234. }
  235. }
  236. catch (Exception e)
  237. {
  238. ComsStatic.EditHistoryUndo(m_EditHistory);
  239. ComsStatic.ShowErrorLog(lyr.Caption + "新增失败!", e.Message); return false;
  240. }
  241. }
  242. //新增管点
  243. else
  244. {
  245. rdGD.SetFieldValue("cqbh", "管点新增");
  246. if (rdGD.Update())
  247. {
  248. (lyr.Dataset as DatasetVector).Append(rdGD);
  249. ComsStatic.ShowOKLog(lyr.Caption + "新增成功", bsmGDNew);
  250. }
  251. else
  252. {
  253. ComsStatic.EditHistoryUndo(m_EditHistory);
  254. ComsStatic.ShowErrorLog(lyr.Caption + "新增失败");
  255. }
  256. }
  257. ComsStatic.RecordsetDispose(rdGD);
  258. _geoPoint = null;
  259. MapControl.Map.TrackingLayer.Clear();
  260. MapControl.Map.RefreshEx(MapControl.Map.Bounds);
  261. return null;
  262. }
  263. public override void AfterClose()
  264. {
  265. MapControl.MouseDoubleClick -= MapControl_MouseDoubleClick;
  266. base.AfterClose();
  267. }
  268. private void InitializeComponent()
  269. {
  270. this.uiCBpol = new Sunny.UI.UICheckBox();
  271. this.panel1 = new System.Windows.Forms.Panel();
  272. this.label1 = new System.Windows.Forms.Label();
  273. this.textBoxX = new System.Windows.Forms.TextBox();
  274. this.label2 = new System.Windows.Forms.Label();
  275. this.textBoxY = new System.Windows.Forms.TextBox();
  276. this.button1 = new System.Windows.Forms.Button();
  277. this.SuspendLayout();
  278. //
  279. // uiCBpol
  280. //
  281. this.uiCBpol.CheckBoxColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  282. this.uiCBpol.Cursor = System.Windows.Forms.Cursors.Hand;
  283. this.uiCBpol.Font = new System.Drawing.Font("微软雅黑", 12F);
  284. this.uiCBpol.Location = new System.Drawing.Point(3, 283);
  285. this.uiCBpol.MinimumSize = new System.Drawing.Size(1, 1);
  286. this.uiCBpol.Name = "uiCBpol";
  287. this.uiCBpol.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
  288. this.uiCBpol.Size = new System.Drawing.Size(282, 29);
  289. this.uiCBpol.Style = Sunny.UI.UIStyle.Gray;
  290. this.uiCBpol.TabIndex = 0;
  291. this.uiCBpol.Text = "限制线上点(即执行管线打断功能)";
  292. //
  293. // panel1
  294. //
  295. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  296. this.panel1.Location = new System.Drawing.Point(0, 0);
  297. this.panel1.Name = "panel1";
  298. this.panel1.Size = new System.Drawing.Size(300, 277);
  299. this.panel1.TabIndex = 1;
  300. //
  301. // label1
  302. //
  303. this.label1.AutoSize = true;
  304. this.label1.Location = new System.Drawing.Point(27, 327);
  305. this.label1.Name = "label1";
  306. this.label1.Size = new System.Drawing.Size(52, 21);
  307. this.label1.TabIndex = 2;
  308. this.label1.Text = "X坐标";
  309. //
  310. // textBoxX
  311. //
  312. this.textBoxX.Location = new System.Drawing.Point(85, 326);
  313. this.textBoxX.Name = "textBoxX";
  314. this.textBoxX.Size = new System.Drawing.Size(180, 29);
  315. this.textBoxX.TabIndex = 3;
  316. //
  317. // label2
  318. //
  319. this.label2.AutoSize = true;
  320. this.label2.Location = new System.Drawing.Point(27, 371);
  321. this.label2.Name = "label2";
  322. this.label2.Size = new System.Drawing.Size(52, 21);
  323. this.label2.TabIndex = 4;
  324. this.label2.Text = "Y坐标";
  325. //
  326. // textBoxY
  327. //
  328. this.textBoxY.Location = new System.Drawing.Point(85, 368);
  329. this.textBoxY.Name = "textBoxY";
  330. this.textBoxY.Size = new System.Drawing.Size(180, 29);
  331. this.textBoxY.TabIndex = 5;
  332. //
  333. // button1
  334. //
  335. this.button1.Location = new System.Drawing.Point(190, 403);
  336. this.button1.Name = "button1";
  337. this.button1.Size = new System.Drawing.Size(75, 32);
  338. this.button1.TabIndex = 6;
  339. this.button1.Text = "定位";
  340. this.button1.UseVisualStyleBackColor = true;
  341. this.button1.Click += new System.EventHandler(this.button1_Click);
  342. //
  343. // GuanDianXinZeng
  344. //
  345. this.Controls.Add(this.button1);
  346. this.Controls.Add(this.textBoxY);
  347. this.Controls.Add(this.label2);
  348. this.Controls.Add(this.textBoxX);
  349. this.Controls.Add(this.label1);
  350. this.Controls.Add(this.panel1);
  351. this.Controls.Add(this.uiCBpol);
  352. this.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(244)))));
  353. this.Name = "GuanDianXinZeng";
  354. this.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  355. this.Size = new System.Drawing.Size(300, 438);
  356. this.Style = Sunny.UI.UIStyle.Gray;
  357. this.ResumeLayout(false);
  358. this.PerformLayout();
  359. }
  360. private void button1_Click(object sender, EventArgs e)
  361. {
  362. double pointX = 0.0d;
  363. double pointY = 0.0d;
  364. if (!double.TryParse(textBoxX.Text, out pointX) || !double.TryParse(textBoxY.Text, out pointY))
  365. {
  366. Sunny.UI.UIMessageTip.ShowError("请选择需要新增节点的图层,并输入正确的坐标!仅能输入数字、小数点"); return;
  367. }
  368. Point2D pClickTmp = new Point2D(pointX, pointY);
  369. Point2Ds point2Ds = new Point2Ds();
  370. point2Ds.Add(pClickTmp);
  371. PrjCoordSys srcTY = GetTargetPrjCoordSys(1); // 原坐标系(大安中央子午线是123)
  372. PrjCoordSys desTY = new PrjCoordSys(4549); // 目标坐标系
  373. bool forward = CoordSysTranslator.Convert(point2Ds, srcTY, desTY, new CoordSysTransParameter(), CoordSysTransMethod.GeocentricTranslation);
  374. Point2D pClick = point2Ds[0];
  375. MapControl.Map.Center = pClick;
  376. MapControl.Map.Refresh();
  377. //限制线上点(即执行管线打断功能)
  378. if (uiCBpol.Checked)
  379. {
  380. GeoPoint pointClick = new GeoPoint(pClick);
  381. Recordset rdJSLK = ComsStatic.gsGuanXian.Query(pointClick, 3, CursorType.Static);
  382. if (rdJSLK.RecordCount == 0)
  383. {
  384. Sunny.UI.UIMessageTip.ShowError("当前鼠标双击点附近没有找到管线信息"); return;
  385. }
  386. double distance_temp = 0.0D;
  387. double distance = 0.0D;
  388. GeoLine _rd_temp;
  389. GeoLine _rd_line = new GeoLine();
  390. rdJSLK.MoveFirst();
  391. while (!rdJSLK.IsEOF)
  392. {
  393. _rd_temp = rdJSLK.GetGeometry() as GeoLine;
  394. distance_temp = Geometrist.Distance(pointClick, _rd_temp);
  395. if (distance_temp <= distance || distance == 0.0D)
  396. {
  397. distance = distance_temp;
  398. _rd_line = _rd_temp;
  399. gxSMID = Int32.Parse(rdJSLK.GetFieldValue("smid").ToString());
  400. }
  401. rdJSLK.MoveNext();
  402. }
  403. ComsStatic.RecordsetDispose(rdJSLK);
  404. pClick = Geometrist.NearestPointToVertex(pClick, _rd_line);
  405. }
  406. _geoPoint = new GeoPoint(pClick);
  407. _geoPoint.Style = ComsStatic.geoStyle_Red_Mark5mm;
  408. MapControl.Map.TrackingLayer.Clear();
  409. MapControl.Map.TrackingLayer.Add(_geoPoint, "jiedian");
  410. MapControl.Map.RefreshTrackingLayer();
  411. }
  412. /// <summary>
  413. /// 按照不同的投影类型,初始化投影坐标系
  414. /// </summary>
  415. /// <param name="type">1:高斯投影;2:UTM投影;3:兰勃脱投影</param>
  416. /// <returns></returns>
  417. private PrjCoordSys GetTargetPrjCoordSys(int type)
  418. {
  419. PrjCoordSys targetPrjCoordSys = null;
  420. PrjParameter parameter = null;
  421. Projection projection = null;
  422. switch (type)
  423. {
  424. case 1:
  425. {
  426. targetPrjCoordSys = new PrjCoordSys(PrjCoordSysType.UserDefined);
  427. projection = new Projection(ProjectionType.GaussKruger);
  428. targetPrjCoordSys.Projection = projection;
  429. parameter = new PrjParameter();
  430. parameter.CentralMeridian = 123;
  431. parameter.FalseEasting = 500000;
  432. parameter.ScaleFactor = 1;
  433. GeoCoordSys geoCoordSys = new GeoCoordSys();
  434. geoCoordSys.Type = GeoCoordSysType.China2000;
  435. targetPrjCoordSys.GeoCoordSys = geoCoordSys;
  436. targetPrjCoordSys.PrjParameter = parameter;
  437. }
  438. break;
  439. case 2:
  440. {
  441. targetPrjCoordSys = new PrjCoordSys(PrjCoordSysType.UserDefined);
  442. projection = new Projection(ProjectionType.TransverseMercator);
  443. targetPrjCoordSys.Projection = projection;
  444. parameter = new PrjParameter();
  445. parameter.CentralMeridian = 110;
  446. parameter.StandardParallel1 = 0;
  447. targetPrjCoordSys.PrjParameter = parameter;
  448. }
  449. break;
  450. case 3:
  451. {
  452. targetPrjCoordSys = new PrjCoordSys(PrjCoordSysType.UserDefined);
  453. projection = new Projection(ProjectionType.LambertConformalConic);
  454. targetPrjCoordSys.Projection = projection;
  455. parameter = new PrjParameter();
  456. parameter.CentralMeridian = 110;
  457. parameter.StandardParallel1 = 30;
  458. targetPrjCoordSys.PrjParameter = parameter;
  459. }
  460. break;
  461. default:
  462. break;
  463. }
  464. return targetPrjCoordSys;
  465. }
  466. }
  467. }