GeoJson c#示例解析世界各国并为每个国家生成Geojson

GeoJson c# example parse countries in the world and generate Geojson for each country(GeoJson c#示例解析世界各国并为每个国家生成Geojson)

本文介绍了GeoJson c#示例解析世界各国并为每个国家生成Geojson的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

寻找如何使用Geojson.net解析/反序列化Geojson文件的示例。由于某些原因,没有如何使用Geojson.net包的示例。

我想在我的网站上使用谷歌地图API。目前我使用的是多边形形状,但我希望将Geojson对象用于层,因为这似乎是一种更好的格式。

我想使用c#序列化Geojson,选择特定的国家/地区边界并生成一个新的Geojson文件,该文件可作为参考并作为层添加到Google地图。

为了测试这一点,我创建了一个COLSOLE应用程序来尝试反序列化GeoJson,但这不起作用(请您给我一些正确的反序列化Geojson的方法?)

        static void Main(string[] args)
    {
        string Jsonstring = File.ReadAllText("c:/worldborders.json");
        JavaScriptSerializer ser = new JavaScriptSerializer();
        List<GeoJsonProperties> ns = (List<GeoJsonProperties>)ser.Deserialize(Jsonstring, typeof(List<GeoJsonProperties>));

?ns is Empty?


    }

我使用在线生成器http://json2csharp.com/为Geojson文件创建了一个类(我原以为GeoJson.net会将该类作为其标准)、GeoJsonProperties、

 public class GeoJsonProperties
{
    public int scalerank { get; set; }
    public string featurecla { get; set; }
    public double labelrank { get; set; }
    public string sovereignt { get; set; }
    public string sov_a3 { get; set; }
    public double adm0_dif { get; set; }
    public double level { get; set; }
    public string type { get; set; }
    public string admin { get; set; }
    public string adm0_a3 { get; set; }
    public double geou_dif { get; set; }
    public string geounit { get; set; }
    public string gu_a3 { get; set; }
    public double su_dif { get; set; }
    public string subunit { get; set; }
    public string su_a3 { get; set; }
    public double brk_diff { get; set; }
    public string name { get; set; }
    public string name_long { get; set; }
    public string brk_a3 { get; set; }
    public string brk_name { get; set; }
    public object brk_group { get; set; }
    public string abbrev { get; set; }
    public string postal { get; set; }
    public string formal_en { get; set; }
    public string formal_fr { get; set; }
    public string note_adm0 { get; set; }
    public string note_brk { get; set; }
    public string name_sort { get; set; }
    public string name_alt { get; set; }
    public double mapcolor7 { get; set; }
    public double mapcolor8 { get; set; }
    public double mapcolor9 { get; set; }
    public double mapcolor13 { get; set; }
    public double pop_est { get; set; }
    public double gdp_md_est { get; set; }
    public double pop_year { get; set; }
    public double lastcensus { get; set; }
    public double gdp_year { get; set; }
    public string economy { get; set; }
    public string income_grp { get; set; }
    public double wikipedia { get; set; }
    public object fips_10 { get; set; }
    public string iso_a2 { get; set; }
    public string iso_a3 { get; set; }
    public string iso_n3 { get; set; }
    public string un_a3 { get; set; }
    public string wb_a2 { get; set; }
    public string wb_a3 { get; set; }
    public double woe_id { get; set; }
    public string adm0_a3_is { get; set; }
    public string adm0_a3_us { get; set; }
    public double adm0_a3_un { get; set; }
    public double adm0_a3_wb { get; set; }
    public string continent { get; set; }
    public string region_un { get; set; }
    public string subregion { get; set; }
    public string region_wb { get; set; }
    public double name_len { get; set; }
    public double long_len { get; set; }
    public double abbrev_len { get; set; }
    public double tiny { get; set; }
    public double homepart { get; set; }
}

public class Geometry
{
    public string type { get; set; }
    public List<List<List<object>>> coordinates { get; set; }
}

public class Feature
{
    public string type { get; set; }
    public GeoJsonProperties  properties { get; set; }
    public Geometry geometry { get; set; }
}

public class RootObject
{
    public string type { get; set; }
    public List<Feature> features { get; set; }
}

}

推荐答案

GeoJSON.Net与Newtonsoft.Json协同工作。您可以使用与使用该库相同的方式进行反序列化。

var geoJsonObject = JsonConvert.DeserializeObject<Point>(json);

这篇关于GeoJson c#示例解析世界各国并为每个国家生成Geojson的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:GeoJson c#示例解析世界各国并为每个国家生成Geojson

基础教程推荐