/// /// SDE 데이터 ShapeFile로 컨버젼 /// sourceWorkspace: sde /// targetWorkspace: 세입 /// filename : 피쳐클래스이름 /// /// //shape 파일로 내리기 public bool ConvertSDEtoShapefile(IWorkspace sourceWorkspace, IWorkspace targetWorkspace, string TargetName,string SourceName) { try { IDataset sourceWorkspaceDataset = (IDataset)sourceWorkspace; IDataset targetWorkspaceDataset = (IDataset)targetWorkspace; IName sourceWo..