it doesn't matter what SRID is specified, when its deserialized it's always set to 4326.
if i specify SRID with for example:
var t = new NetTopologySuite.Geometries.GeometryFactory().WithSRID(3006); options.SerializerSettings.Converters.Add(new NetTopologySuite.IO.Converters.GeometryConverter());
Then its always setting SRID to 3006.
but i need the user to be able to send in geojson of any SRID, so i can't hardcode a specific SRID, it needs to be read from the input.
Is this not possible?
it doesn't matter what SRID is specified, when its deserialized it's always set to 4326.
if i specify SRID with for example:
var t = new NetTopologySuite.Geometries.GeometryFactory().WithSRID(3006); options.SerializerSettings.Converters.Add(new NetTopologySuite.IO.Converters.GeometryConverter());Then its always setting SRID to 3006.
but i need the user to be able to send in geojson of any SRID, so i can't hardcode a specific SRID, it needs to be read from the input.
Is this not possible?