Если у меня есть этот JSON, где есть заголовок с тегами version
, generator
, om3s
и elements
. elements
может иметь тип node
или way
, и связанные ключи JSON зависят от типа. Я пытаюсь использовать JsonSubTypes для преобразования каждого типа элемента в класс C #.
Пример JSON:
[
{
"version": 0.6,
"generator": "Overpass API 0.7.55.7 8b86ff77",
"osm3s": {
"timestamp_osm_base": "2019-05-21T18:03:02Z",
"copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."
},
"elements": [
{
"type": "node",
"id": 4949106384,
"lat": 32.2686857,
"lon": -107.738218,
"tags": {
"highway": "turning_circle"
}
},
{
"type": "way",
"id": 14527404,
"nodes": [
142882281,
3048075541,
1598998260
],
"tags": {
"highway": "residential",
"name": "West Apple Street",
"tiger:cfcc": "A41",
"tiger:county": "Luna, NM",
"tiger:name_base": "Apple",
"tiger:name_direction_prefix": "W",
"tiger:name_type": "St",
"tiger:reviewed": "no"
}
}
]
}
]
Я пытаюсь десериализовать его, используя:
var json = JsonConvert.DeserializeObject<OSMdata>(jsonText);
Где OSMdata
выглядит так:
[JsonConverter(typeof(JsonSubtypes), "type")]
[JsonSubtypes.KnownSubType(typeof(Element.Node), "node")]
[JsonSubtypes.KnownSubType(typeof(Element.Edge), "way")]
public abstract class OSMdata
{
public float version { get; set; }
public string generator { get; set; }
public Osm3s osm3s { get; set; }
public Element[] elements { get; set; }
}
public class Osm3s : OSMdata
{
public DateTime timestamp_osm_base { get; set; }
public string copyright { get; set; }
}
public class Element : OSMdata
{
public class Node : Element
{
public string type { get; } = "node";
public long id { get; set; }
public float lat { get; set; }
public float lon { get; set; }
public NodeTags tags { get; set; }
}
public class NodeTags : Node
{
public string highway { get; set; }
public string _ref { get; set; }
}
public class Edge : Element
{
public string type { get; } = "way";
public long id { get; set; }
public long[] nodes { get; set; }
public EdgeTags tags { get; set; }
}
public class EdgeTags : Edge
{
public string highway { get; set; }
public string name { get; set; }
public string cfcc { get; set; }
public string county { get; set; }
public string oneway { get; set; }
}
}
Что возвращает:
Unhandled Exception: System.ArgumentNullException: Value cannot be null.
at System.RuntimeType.MakeGenericType(Type[] instantiation)
at JsonSubTypes.JsonSubtypes.CreateCompatibleList(Type targetContainerType, Type elementType)
at JsonSubTypes.JsonSubtypes.ReadArray(JsonReader reader, Type targetType, JsonSerializer serializer)
at JsonSubTypes.JsonSubtypes.ReadJson(JsonReader reader, Type objectType, JsonSerializer serializer)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.DeserializeConvertable(JsonConverter converter, JsonReader reader, Type objectType, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent)
at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonConvert.DeserializeObject(String value, Type type, JsonSerializerSettings settings)
at Newtonsoft.Json.JsonConvert.DeserializeObject[T](String value, JsonSerializerSettings settings)
at newapp.Program.Main(String[] args) in C:\Users\RDCRLDDH\source\repos\newapp\newapp\Program.cs:line 23
Хотя я не понимаю эту ошибку и ищу решение, вот несколько вопросов, которые я хотел бы прояснить:
Вопросы
Правильно ли я строю класс OSMdata
? Я думаю, что правильно следую примерам, но не уверен, правильно ли я присваиваю классы Node
и Edge
родительскому классу OSMdata
.
Как десериализатор узнает, как присвоить тег "tiger:cfcc"
свойству Cfcc
в EdgeTags
?