skip to Main Content

ArcGis json transform to geojson

I am currently working with geospatial data and I have encountered a situation where I need to convert data from an ArcGIS JSON format into a GeoJSON format. I understand that GDAL, specifically its ogr2ogr tool, is a powerful library…

VIEW QUESTION

How to deserialize JSON (Cannot deserialize the current JSON object (e.g. {""name"":""value""}) into type 'System.Collections.Generic.List`1)

Upon serializing the JSON if shows an error like this one. (Cannot deserialize the current JSON object (e.g. {""name"":""value""}) into type 'System.Collections.Generic.List`1) This is my code on serializing json Dim test As List(Of properties) = Newtonsoft.Json.JsonConvert.DeserializeObject(Of List(Of properties))(response) e.Result =…

VIEW QUESTION
Back To Top
Search