将DataTable序列化为GeoJSON对象?

时间:2019-10-22 12:44:13

标签: c# json visual-studio-2013 json.net geojson

我一直难以将数据表转换为GeoJSON对象。

数据表如下:

Name       Status       imageUrl          lat       lon
Joe        Dev          markers/Dev.svg   34.21092  -77.59384
Mary       Dev          markers/Dev.svg   32.49323  -78.43144

GeoJSON应该如下所示:

{
    "type" : "FeatureCollection",
    "features" : [
        {
            "type" : "Feature",
            "properties" : {
                "Name " : "Joe",
                "Status" : "Dev",
                "imageUrl" : "markers/Dev.svg",
                "lat" : 34.21092,
                "lon" : -77.59384
            },
            "geometry" : {
                "type" : "Point",
                "coordinates" : [ -77.59384, 34.21092 ]
            }
        },
        {
            "type" : "Feature",
            "properties" : {
                "Name " : "Mary",
                "Status" : "Dev",
                "imageUrl" : "markers/Dev.svg",
                "lat" : 32.49323,
                "lon" : -78.43144
            },
            "geometry" : {
                "type" : "Point",
                "coordinates" : [ -78.43144, 32.49323 ]
            }
        }
    ]
}

我一直在到处搜索,但尚未找到解决方案。我一直在使用NewtonSoft将DataTable序列化为JSON对象,但是GeoJSON是一种更为复杂的格式。

最困难的部分是必须在其他类别中包括类别。无论如何,这就是我尝试过的:

使用Newtonsoft,我可以将数据表转换为JSON。显然,这不是解决方案:

string callback = JsonConvert.SerializeObject(dataTable);
[] resultBytes = Encoding.UTF8.GetBytes(callback);
return new System.IO.MemoryStream(resultBytes);

向前迈出一步,这就是我试图添加一些geojson属性的方法:

var envelope = new
{
    type = "FeatureCollection",
    features = result.Tables[0]
};

string callback = JsonConvert.SerializeObject(envelope);
byte[] resultBytes = Encoding.UTF8.GetBytes(callback);

这将返回更接近的结果,但仍缺少每个数组中的{"type": "Feature", "properties"

最后,我在这里发布了一个类似的问题,它非常有用,但是它以实际的json而不是datatable作为参数,这带来了许多其他问题,主要是一个here

因此,我决定从头开始,然后发布一个问题,询问如何获取源(常规数据表)并将其转换为GeoJson对象,就像上面的对象一样。

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

您需要将dataTable记录映射到多维对象结构中。我建议使用LinQ。

要遍历dataTable,请在dataTable对象上使用.AsEnumerable()

解决方案::创建一个将convert DataTable转换为GeoJSON字符串的函数。

请确保将System.Linq文件中的namespace .cs导入

public static string DataTableToGeoJSONString(DataTable dataTable)
{

    var envelope = new
    {
        type = "FeatureCollection",
        features = dataTable.AsEnumerable().Select(record => new {
            type = "Feature",
            properties = new
            {
                Name = Convert.ToString(record["Name"]),
                Status = Convert.ToString(record["Status"]),
                imageUrl = Convert.ToString(record["imageUrl"]),
                lat = Convert.ToDecimal(record["lat"]),
                lon = Convert.ToDecimal(record["lon"])

            },
            geometry = new
            {
                type = "Point",
                coordinates = new[] {
                    Convert.ToDecimal(record["lon"]),
                    Convert.ToDecimal(record["lat"])
                }
            }
        }).ToArray()
    };
    return JsonConvert.SerializeObject(envelope);
}

然后从其中获取JSON字符串

string geoJson = DataTableToGeoJSONString(dataTable);

请注意,此代码示例使用匿名类new {}。它可以工作,但是我建议您使用必须创建的强类型类。

应该以预期的GeoJSON格式进行序列化。