中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
平南县| 乾安县| 靖宇县| 惠州市| 蓝山县| 淄博市| 霍林郭勒市| 错那县| 清丰县| 伊吾县| 盘山县| 嘉鱼县| 贞丰县| 墨脱县| 吴忠市| 定西市| 寻甸| 吐鲁番市| 乌兰浩特市| 十堰市| 临湘市| 望江县| 乌拉特前旗| 开原市| 集安市| 本溪| 东莞市| 新乡市| 内黄县| 彰化市| 大英县| 顺义区| 景泰县| 湘阴县| 抚宁县| 汤阴县| 那曲县| 阿尔山市| 临澧县| 朔州市| 金山区|