91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c#中arcgis的地理編碼與反地理編碼

c#
小樊
90
2024-08-23 04:44:32
欄目: 編程語言

在C#中使用ArcGIS進行地理編碼和反地理編碼,可以通過ArcGIS的Geocoding和ReverseGeocoding服務來實現。

地理編碼是將地址信息轉換為地理坐標(經緯度)的過程,可以使用ArcGIS的Geocoding服務來實現。首先需要創建一個Geocoding對象,并設置Geocoding服務的URL,然后調用Geocode方法并傳入需要編碼的地址信息,最后獲取返回的地理坐標信息。

// 創建Geocoding對象
GeocodeService geocodeService = new GeocodeService();
// 設置Geocoding服務的URL
geocodeService.Url = "http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer";
// 地址信息
Address address = new Address();
address.SingleLine = "380 New York Street, Redlands, CA";
// 地理編碼
List<GeocodeResult> results = geocodeService.Geocode(address);
// 獲取地理坐標
double x = results[0].Location.X;
double y = results[0].Location.Y;

反地理編碼是將地理坐標(經緯度)轉換為地址信息的過程,可以使用ArcGIS的ReverseGeocoding服務來實現。同樣需要創建一個ReverseGeocoding對象,并設置ReverseGeocoding服務的URL,然后調用ReverseGeocode方法并傳入需要反編碼的地理坐標信息,最后獲取返回的地址信息。

// 創建ReverseGeocoding對象
ReverseGeocodeService reverseGeocodeService = new ReverseGeocodeService();
// 設置ReverseGeocoding服務的URL
reverseGeocodeService.Url = "http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer";
// 地理坐標信息
MapPoint point = new MapPoint(34.056215, -117.19534);
// 反地理編碼
List<ReverseGeocodeResult> results = reverseGeocodeService.ReverseGeocode(point);
// 獲取地址信息
string address = results[0].Address;

通過以上代碼示例,可以在C#中實現利用ArcGIS進行地理編碼和反地理編碼的功能。

0
拜泉县| 岳池县| 芦溪县| 固始县| 澄迈县| 祁连县| 潼关县| 柘荣县| 达尔| 株洲市| 宁河县| 平舆县| 张北县| 韶关市| 丰县| 远安县| 延川县| 玉龙| 新建县| 石狮市| 香港| 黄石市| 林州市| 阳谷县| 和龙市| 敦化市| 法库县| 盐池县| 黄龙县| 永定县| 阿克| 德江县| 宜阳县| 木兰县| 阆中市| 桦甸市| 大连市| 麻栗坡县| 肥城市| 皋兰县| 蓬莱市|