■ ShapeFileWriter 클래스를 사용해 도형 파일을 생성하는 방법을 보여준다.
▶ MainForm.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 |
using System; using System.Collections.Specialized; using System.IO; using System.Windows.Forms; using EGIS.ShapeFileLib; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); this.inputShapeFileButton.Click += inputShapeFileButton_Click; this.outputShapeFileButton.Click += outputShapeFileButton_Click; this.filterComboBox.SelectedIndexChanged += filterComboBox_SelectedIndexChanged; this.filterCheckedListBox.Click += filterCheckedListBox_Click; this.filterCheckedListBox.ItemCheck += filterCheckedListBox_ItemCheck; this.generateButton.Click += generateButton_Click; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 입력 도형 파일 버튼 클릭시 처리하기 - inputShapefileButton_Click(sender, e) /// <summary> /// 입력 도형 파일 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void inputShapeFileButton_Click(object sender, EventArgs e) { try { if(this.openFileDialog.ShowDialog(this) == DialogResult.OK) { LoadInputShapeFile(this.openFileDialog.FileName); } } catch(Exception exception) { MessageBox.Show(exception.ToString()); } finally { this.outputPanel.Enabled = !string.IsNullOrEmpty(this.inputShapeFileTextBox.Text); } } #endregion #region 출력 도형 파일 버튼 클릭시 처리하기 - outputShapeFileButton_Click(sender, e) /// <summary> /// 출력 도형 파일 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void outputShapeFileButton_Click(object sender, EventArgs e) { if(this.saveFileDialog.ShowDialog(this) == DialogResult.OK) { this.outputShapeFileTextBox.Text = this.saveFileDialog.FileName; } } #endregion #region 필터 콤보 박스 선택 인덱스 변경시 처리하기 - filterComboBox_SelectedIndexChanged(sender, e) /// <summary> /// 필터 콤보 박스 선택 인덱스 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void filterComboBox_SelectedIndexChanged(object sender, EventArgs e) { if(this.filterComboBox.SelectedIndex >= 0) { Cursor = Cursors.WaitCursor; this.filterCheckedListBox.Items.Clear(); this.filterCheckedListBox.Enabled = false; this.filterCheckedListBox.SuspendLayout(); this.filterCheckedListBox.BeginUpdate(); DbfReader reader = null; try { reader = new DbfReader(Path.ChangeExtension(this.inputShapeFileTextBox.Text, ".dbf")); string[] recordArray = reader.GetDistinctRecords(this.filterComboBox.SelectedIndex); if(recordArray.Length > 1000 && this.limitRecordCountCheckBox.Checked) { Array.Resize(ref recordArray, 1000); } this.filterCheckedListBox.Items.AddRange(recordArray); } finally { this.filterCheckedListBox.EndUpdate(); this.filterCheckedListBox.Enabled = true; this.filterCheckedListBox.ResumeLayout(); Cursor = Cursors.Default; reader.Close(); this.generateButton.Enabled = this.filterCheckedListBox.CheckedIndices.Count > 0; } } } #endregion #region 필터 체크 리스트 박스 클릭시 처리하기 - filterCheckedListBox_Click(sender, e) /// <summary> /// 필터 체크 리스트 박스 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void filterCheckedListBox_Click(object sender, EventArgs e) { this.generateButton.Enabled = this.filterCheckedListBox.CheckedIndices.Count > 0; } #endregion #region 필터 체크 리스트 박스 항목 체크시 처리하기 - filterCheckedListBox_ItemCheck(sender, e) /// <summary> /// 필터 체크 리스트 박스 항목 체크시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void filterCheckedListBox_ItemCheck(object sender, ItemCheckEventArgs e) { this.generateButton.Enabled = (this.filterCheckedListBox.CheckedIndices.Count > 1) || (e.NewValue == CheckState.Checked); } #endregion #region 출력 도형 파일 생성 버튼 클릭시 처리하기 - generateButton_Click(sender, e) /// <summary> /// 출력 도형 파일 생성 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void generateButton_Click(object sender, EventArgs e) { GenerateOutputShapeFile(); } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region 입력 도형 파일 로드하기 - LoadInputShapeFile(filePath) /// <summary> /// 입력 도형 파일 로드하기 /// </summary> /// <param name="filePath">파일 경로</param> private void LoadInputShapeFile(string filePath) { this.inputShapeFileTextBox.Text = filePath; this.filterComboBox.Items.Clear(); this.filterCheckedListBox.Items.Clear(); DbfReader reader = null; try { reader = new DbfReader(Path.ChangeExtension(filePath, ".dbf")); this.filterComboBox.Items.AddRange(reader.GetFieldNames()); } finally { if(reader != null) { reader.Close(); } } this.filterComboBox.SelectedIndex = 0; } #endregion #region 출력 도형 파일 생성하기 - GenerateOutputShapeFile() /// <summary> /// 출력 도형 파일 생성하기 /// </summary> private void GenerateOutputShapeFile() { if(string.IsNullOrEmpty(this.outputShapeFileTextBox.Text) || this.filterCheckedListBox.CheckedIndices.Count == 0) { return; } int fieldIndex = this.filterComboBox.SelectedIndex; if(fieldIndex == -1) { MessageBox.Show(this, "선택된 필드가 없습니다.", "INFORMATION"); return; } ShapeFile shapeFile = new ShapeFile(this.inputShapeFileTextBox.Text); DbfReader reader = new DbfReader(Path.ChangeExtension(this.inputShapeFileTextBox.Text, ".dbf")); StringCollection stringCollection = new StringCollection(); for(int i = 0; i < this.filterCheckedListBox.CheckedIndices.Count; i++) { stringCollection.Add(this.filterCheckedListBox.Items[this.filterCheckedListBox.CheckedIndices[i]] as string); } string rootDirectoryPath = Path.GetDirectoryName(this.outputShapeFileTextBox.Text); string shapeFileName = Path.GetFileNameWithoutExtension(this.outputShapeFileTextBox.Text); ShapeFileWriter writer; ShapeType shapeType = shapeFile.ShapeType; if(shapeFile.ShapeType == ShapeType.PolygonZ) { shapeType = ShapeType.Polygon; } DbfFieldDesc[] fieldDescriptionArray = reader.DbfRecordHeader.GetFieldDescriptions(); for(int i = 0; i < fieldDescriptionArray.Length; i++) { fieldDescriptionArray[i].FieldType = DbfFieldType.Character; } if(this.appendCheckBox.Checked) { writer = ShapeFileWriter.OpenWriter(rootDirectoryPath, shapeFileName); } else { writer = ShapeFileWriter.CreateWriter(rootDirectoryPath, shapeFileName, shapeType, fieldDescriptionArray); } try { Cursor = Cursors.WaitCursor; this.toolStripProgressBar.Maximum = shapeFile.RecordCount; this.toolStripProgressBar.Value = 0; ShapeFileEnumerator enumerator = shapeFile.GetShapeFileEnumerator(); for(int i = 0; i < shapeFile.RecordCount; i++) { string[] fieldArray = reader.GetFields(i); bool include = false; for(int j = 0; !include && j < stringCollection.Count; j++) { include = (string.Compare(fieldArray[fieldIndex].Trim(), stringCollection[j], true) == 0); } if(include) { if(shapeType == ShapeType.Point) { writer.AddRecord(shapeFile.GetShapeDataD(i)[0], 1, fieldArray); } else { writer.AddRecord(shapeFile.GetShapeDataD(i), fieldArray); } } this.toolStripProgressBar.Increment(1); } MessageBox.Show("신규 도형 파일이 성공적으로 생성되었습니다."); } finally { Cursor = Cursors.Default; writer.Close(); shapeFile.Close(); reader.Close(); } } #endregion } } |