Spatial4n.Core.Io.ShapeReadWriter.ReadLatCommaLonPoint C# (CSharp) 메소드

ReadLatCommaLonPoint() 개인적인 메소드

Reads geospatial latitude then a comma then longitude.
private ReadLatCommaLonPoint ( String value ) : System.Point
value String
리턴 System.Point
        private Point ReadLatCommaLonPoint(String value)
        {
            double[] latLon = ParseUtils.ParseLatitudeLongitude(value);
            return Ctx.MakePoint(latLon[1], latLon[0]);
        }