ARCGIS常用幾種本地資料AE初始化

2022-04-23 17:13:49 字數 976 閱讀 6351

1.personal gdb

新建乙個在e盤的名為test的mdb:

iworkspacefactory workspacefactory = new accessworkspacefactoryclass();

workspacefactory.create("e:\\", "test", null, 0);

2.filegdb

初始化乙個在e盤名為test2的filegdb

esri.arcgis.geoprocessor.geoprocessor gp = new esri.arcgis.geoprocessor.geoprocessor();//例項化乙個項

gp.overwriteoutput = true;

createfilegdb gdb = new createfilegdb();//例項化乙個filegdb

string fdir = "e:\\test2";

gdb.out_folder_path = system.io.path.getdirectoryname(fdir);

gdb.out_name = system.io.path.getfilename(fdir);

gp.execute(gdb, null);

3.shapefile

初始化乙個在e盤名為test3的shapefile

esri.arcgis.geoprocessor.geoprocessor gp = new esri.arcgis.geoprocessor.geoprocessor();//例項化乙個項

gp.overwriteoutput = true;

createfeatureclass feacls = new createfeatureclass();//例項化乙個

feacls.out_path = "e:\\";

feacls.out_name = "test3";

gp.execute(feacls, null);

ArcGIS資料大全

兄弟們,好東西,大家看一看!2.快速製圖基本操作 arcgis應用案例 3.資料的後期處理 arcgis應用案例 4.arcgis world第 一 二 四期 5.arcgis中國通訊第14 15 16期 http share.gissky.net esri arcgis中國通訊 6.modelin...

ArcGIS 資料分析

在 gis分析中經常會遇到通過離散點生成連續的曲面,來 未知點的資料。或者根據已知資料對資料變化趨勢和超越臨界值的概率等問題,我們知道通過 arcgis 地統計分析模組就可以做到。今天主要討論的是如何讓我們更好的了解我們的取樣資料,對資料進行分析,資料分析可以讓使用者更全面的了解到資料是否存在某種趨...

ArcGIS參考資料整理

1.shp檔案新增地理座標 在arcmap圖層中,選擇檔案右鍵open attribute table.2.座標轉換 基於地心的七引數轉換法 coordinate frame 三個平移轉換引數 x,y,z 三個旋轉轉換引數 rx,ry,rz 和乙個比例引數 s 轉換引數的獲取可以從官方測量機構 資料...