sibartlett / Geo

A geospatial library for .NET
https://www.nuget.org/packages/Geo/
GNU Lesser General Public License v3.0
176 stars 39 forks source link

Parsers #15

Open niemyjski opened 9 years ago

niemyjski commented 9 years ago

It would be nice if this library supported parsing/validating formats

Like I have a geo string and I need to know what it is. So I'd try passing in geojson 12.0, 12.0 and it would return an enum with the type or I pass it 50°03'46.461"S 125°48'26.533"E 978.90m etc,,

sibartlett commented 9 years ago

There are three parse methods on the Coordinate object:

Those methods only parse coordinate strings, and may not support all possible coordinate formats (but we can improve on that).

In regards, to supporting more strings such as GeoJSON, etc. I'll give it some thought.