I am trying hard to find any geospatial library that supports .NET Core, however with no success so far. Do you have tips for any?
My requirements are:
- work with different coordinate systems
- compute intersection of 2 geometries
- compute buffer of a polygon/polyline
- compute polygon area
- compute length of a polyline
asked Nov 29, 2018 at 13:31
-
Not sure if SQLServer types can do all this, but if so, have you tried this? stackoverflow.com/a/48362174/125400Kirk Kuykendall– Kirk Kuykendall2018年11月29日 16:20:24 +00:00Commented Nov 29, 2018 at 16:20
2 Answers 2
I ended up using NetTopologySuite. This library is used internally by Entity Framework Core for spatial operations.
answered Nov 30, 2018 at 7:34
NetTopologySuite and ProjNet are the libraries to use. ProjNet can be useful when doing (re)projections.
default