WKTReader.cs :  » GIS » DeepEarth » GisSharpBlog » NetTopologySuite » IO » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » GIS » DeepEarth 
DeepEarth » GisSharpBlog » NetTopologySuite » IO » WKTReader.cs
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using GeoAPI.Geometries;
using GisSharpBlog.NetTopologySuite.Geometries;
using GisSharpBlog.NetTopologySuite.Utilities;
using RTools_NTS.Util;

namespace GisSharpBlog.NetTopologySuite.IO{
    /// <summary>  
    /// Converts a Well-Known Text string to a <c>Geometry</c>.
    /// 
    /// The <c>WKTReader</c> allows
    /// extracting <c>Geometry</c> objects from either input streams or
    /// internal strings. This allows it to function as a parser to read <c>Geometry</c>
    /// objects from text blocks embedded in other data formats (e.g. XML). 
    /// 
    /// The Well-known
    /// Text format is defined in the <A HREF="http://www.opengis.org/techno/specs.htm">
    /// OpenGIS Simple Features Specification for SQL</A> . 
    /// 
    /// NOTE:  There is an inconsistency in the SFS. 
    /// The WKT grammar states that <c>MultiPoints</c> are represented by 
    /// <c>MULTIPOINT ( ( x y), (x y) )</c>, 
    /// but the examples show <c>MultiPoint</c>s as <c>MULTIPOINT ( x y, x y )</c>. 
    /// Other implementations follow the latter syntax, so NTS will adopt it as well.
    /// A <c>WKTReader</c> is parameterized by a <c>GeometryFactory</c>, 
    /// to allow it to create <c>Geometry</c> objects of the appropriate
    /// implementation. In particular, the <c>GeometryFactory</c> will
    /// determine the <c>PrecisionModel</c> and <c>SRID</c> that is used. 
    /// The <c>WKTReader</c> will convert the input numbers to the precise
    /// internal representation.
    /// <remarks>
    /// <see cref="WKTReader" /> reads also non-standard "LINEARRING" tags.
    /// </remarks>
    /// </summary>
    public class WKTReader 
    {
        private IGeometryFactory geometryFactory;
        private IPrecisionModel precisionModel;
        int index;

        /// <summary> 
        /// Creates a <c>WKTReader</c> that creates objects using a basic GeometryFactory.
        /// </summary>
        public WKTReader() : this(GeometryFactory.Default) { }

        /// <summary>  
        /// Creates a <c>WKTReader</c> that creates objects using the given
        /// <c>GeometryFactory</c>.
        /// </summary>
        /// <param name="geometryFactory">The factory used to create <c>Geometry</c>s.</param>
        public WKTReader(IGeometryFactory geometryFactory) 
        {
            this.geometryFactory = geometryFactory;
            precisionModel = geometryFactory.PrecisionModel;
        }

        /// <summary>
        /// Converts a Well-known Text representation to a <c>Geometry</c>.
        /// </summary>
        /// <param name="wellKnownText">
        /// one or more Geometry Tagged Text strings (see the OpenGIS
        /// Simple Features Specification) separated by whitespace.
        /// </param>
        /// <returns>
        /// A <c>Geometry</c> specified by <c>wellKnownText</c>
        /// </returns>
        public IGeometry Read(string wellKnownText) 
        {
            using (StringReader reader = new StringReader(wellKnownText))
            {
                return Read(reader);
            }            
        }

        /// <summary>  
        /// Converts a Well-known Text representation to a <c>Geometry</c>.
        /// </summary>
        /// <param name="reader"> 
        /// A Reader which will return a "Geometry Tagged Text"
        /// string (see the OpenGIS Simple Features Specification).
        /// </param>
        /// <returns>A <c>Geometry</c> read from <c>reader</c>.
        /// </returns>
        public IGeometry Read(TextReader reader) 
        {
            StreamTokenizer tokenizer = new StreamTokenizer(reader);
            var tokens = new List<Token>();
            tokenizer.Tokenize(tokens);     // Read directly all tokens
            index = 0;                      // Reset pointer to start of tokens
            try
            {
                return ReadGeometryTaggedText(tokens);
            }
            catch (IOException e)
            {
                throw new ParseException(e.ToString());
            }            
        }

    /// <summary>
    /// Returns the next array of <c>Coordinate</c>s in the stream.
    /// </summary>
    /// <param name="tokens">
    /// Tokenizer over a stream of text in Well-known Text
    /// format. The next element returned by the stream should be "(" (the
    /// beginning of "(x1 y1, x2 y2, ..., xn yn)") or "EMPTY".
    /// </param>
    /// <param name="skipExtraParenthesis">
    /// if set to <c>true</c> skip extra parenthesis around coordinates.
    /// </param>
    /// <returns>
    /// The next array of <c>Coordinate</c>s in the
    /// stream, or an empty array if "EMPTY" is the next element returned by
    /// the stream.
    /// </returns>
    private ICoordinate[] GetCoordinates(IList tokens, Boolean skipExtraParenthesis)
    {
            string nextToken = GetNextEmptyOrOpener(tokens);
            if (nextToken.Equals("EMPTY")) 
                return new ICoordinate[]{};
            List<ICoordinate> coordinates = new List<ICoordinate>();
      coordinates.Add(GetPreciseCoordinate(tokens, skipExtraParenthesis));
            nextToken = GetNextCloserOrComma(tokens);
            while (nextToken.Equals(",")) 
            {
        coordinates.Add(GetPreciseCoordinate(tokens, skipExtraParenthesis));
                nextToken = GetNextCloserOrComma(tokens);
            }
            return coordinates.ToArray();
        }

        /// <summary>
        /// 
        /// </summary>
        /// <param name="tokens"></param>
        /// <returns></returns>
    private ICoordinate GetPreciseCoordinate(IList tokens, Boolean skipExtraParenthesis)
        {
            ICoordinate coord = new Coordinate();
      Boolean extraParenthesisFound = false;
      if (skipExtraParenthesis)
      {
        extraParenthesisFound = IsStringValueNext(tokens, "(");
        if (extraParenthesisFound)
        {
          index++;
        }
      }
      coord.X = GetNextNumber(tokens);
      coord.Y = GetNextNumber(tokens);
            if (IsNumberNext(tokens))
                coord.Z = GetNextNumber(tokens);

      if (skipExtraParenthesis && 
        extraParenthesisFound && 
        IsStringValueNext(tokens, ")"))
      {
          index++;
      }

      precisionModel.MakePrecise(coord);
            return coord;
        }

    private Boolean IsStringValueNext(IList tokens, String stringValue)
    {
      Token token = tokens[index] as Token;
      return token.StringValue == stringValue;
    }

        /// <summary>
        /// 
        /// </summary>
        /// <param name="tokens"></param>
        /// <returns></returns>
        private bool IsNumberNext(IList tokens) 
        {            
            Token token = tokens[index] as Token;                
            return token is FloatToken || token is IntToken;        
        }

        /// <summary>
        /// Returns the next number in the stream.
        /// </summary>
        /// <param name="tokens">
        /// Tokenizer over a stream of text in Well-known Text
        /// format. The next token must be a number.
        /// </param>
        /// <returns>The next number in the stream.</returns>
    private double GetNextNumber(IList tokens) 
        {
            Token token = tokens[index++] as Token;            

            if (token == null)
                throw new ArgumentNullException("tokens", "Token list contains a null value");
            else if (token is EofToken)
                throw new ParseException("Expected number but encountered end of stream");
            else if (token is EolToken)
                throw new ParseException("Expected number but encountered end of line");
            else if (token is FloatToken || token is IntToken)
                return (double) token.ConvertToType(typeof(double));
            else if (token is WordToken)
                throw new ParseException("Expected number but encountered word: " + token.StringValue);
            else if (token.StringValue == "(")
        throw new ParseException("Expected number but encountered '('");
            else if (token.StringValue == ")")
        throw new ParseException("Expected number but encountered ')'");
            else if (token.StringValue == ",")
                throw new ParseException("Expected number but encountered ','");
            else
            {
                Assert.ShouldNeverReachHere();
                return double.NaN;
            }
        }

        /// <summary>
        /// Returns the next "EMPTY" or "(" in the stream as uppercase text.
        /// </summary>
        /// <param name="tokens">
        /// Tokenizer over a stream of text in Well-known Text
        /// format. The next token must be "EMPTY" or "(".
        /// </param>
        /// <returns>
        /// The next "EMPTY" or "(" in the stream as uppercase text.</returns>
        private string GetNextEmptyOrOpener(IList tokens) 
        {
            string nextWord = GetNextWord(tokens);
            if (nextWord.Equals("EMPTY") || nextWord.Equals("(")) 
                return nextWord;            
            throw new ParseException("Expected 'EMPTY' or '(' but encountered '" + nextWord + "'");
        }

        /// <summary>
        /// Returns the next ")" or "," in the stream.
        /// </summary>
        /// <param name="tokens">
        /// Tokenizer over a stream of text in Well-known Text
        /// format. The next token must be ")" or ",".
        /// </param>
        /// <returns>
        /// The next ")" or "," in the stream.</returns>
        private string GetNextCloserOrComma(IList tokens) 
        {
            string nextWord = GetNextWord(tokens);
            if (nextWord.Equals(",") || nextWord.Equals(")")) 
                return nextWord;
            
            throw new ParseException("Expected ')' or ',' but encountered '" + nextWord
                + "'");
        }

        /// <summary>
        /// Returns the next ")" in the stream.
        /// </summary>
        /// <param name="tokens">
        /// Tokenizer over a stream of text in Well-known Text
        /// format. The next token must be ")".
        /// </param>
        /// <returns>
        /// The next ")" in the stream.</returns>
        private string GetNextCloser(IList tokens) 
        {
            string nextWord = GetNextWord(tokens);    
            if (nextWord.Equals(")"))
                return nextWord;
            throw new ParseException("Expected ')' but encountered '" + nextWord + "'");         
        }

        /// <summary>
        /// Returns the next word in the stream as uppercase text.
        /// </summary>
        /// <param name="tokens">
        /// Tokenizer over a stream of text in Well-known Text
        /// format. The next token must be a word.
        /// </param>
        /// <returns>The next word in the stream as uppercase text.</returns>
        private string GetNextWord(IList tokens)
        {
            Token token = tokens[index++] as Token;            

            if (token is EofToken)
                throw new ParseException("Expected number but encountered end of stream");
            else if (token is EolToken)
                throw new ParseException("Expected number but encountered end of line");
            else if (token is FloatToken || token is IntToken)
                throw new ParseException("Expected word but encountered number: " + token.StringValue);
            else if (token is WordToken)
                return token.StringValue.ToUpper();
            else if (token.StringValue == "(")
                return "(";
            else if (token.StringValue == ")")
                return ")";
            else if (token.StringValue == ",")
                return ",";
            else
            {
                Assert.ShouldNeverReachHere();
                return null;
            }                     
        }

        /// <summary>
        /// Creates a <c>Geometry</c> using the next token in the stream.
        /// </summary>
        /// <param name="tokens">
        /// Tokenizer over a stream of text in Well-known Text
        /// format. The next tokens must form a &lt;Geometry Tagged Text.
        /// </param>
        /// <returns>A <c>Geometry</c> specified by the next token
        /// in the stream.</returns>
        private IGeometry ReadGeometryTaggedText(IList tokens) 
        {            
            /*
             * A new different implementation by Marc Jacquin:
             * this code manages also SRID values.
             */
            IGeometry returned = null;
            string sridValue = null;
            string type = tokens[0].ToString();
            
            if (type == "SRID") 
            {
                sridValue = tokens[2].ToString();
                // tokens.RemoveRange(0, 4);
                tokens.RemoveAt(0);
                tokens.RemoveAt(0);
                tokens.RemoveAt(0);
                tokens.RemoveAt(0);
            }
            else type = GetNextWord(tokens);
            if (type.Equals("POINT"))
                returned = ReadPointText(tokens);            
            else if (type.Equals("LINESTRING"))
                returned =  ReadLineStringText(tokens);            
            else if (type.Equals("LINEARRING"))
                returned =  ReadLinearRingText(tokens);            
            else if (type.Equals("POLYGON"))
                returned =  ReadPolygonText(tokens);            
            else if (type.Equals("MULTIPOINT"))
                returned =  ReadMultiPointText(tokens);
            else if (type.Equals("MULTILINESTRING")) 
                returned =  ReadMultiLineStringText(tokens);            
            else if (type.Equals("MULTIPOLYGON"))
                returned =  ReadMultiPolygonText(tokens);            
            else if (type.Equals("GEOMETRYCOLLECTION"))
                returned =  ReadGeometryCollectionText(tokens);
            else throw new ParseException("Unknown type: " + type);

            if (returned == null)
                throw new NullReferenceException("Error reading geometry");

            if (sridValue != null)            
                returned.SRID = Convert.ToInt32(sridValue);

            return returned;                        
        }

        /// <summary>
        /// Creates a <c>Point</c> using the next token in the stream.
        /// </summary>
        /// <param name="tokens">
        /// Tokenizer over a stream of text in Well-known Text
        /// format. The next tokens must form a &lt;Point Text.
        /// </param>
        /// <returns>A <c>Point</c> specified by the next token in
        /// the stream.</returns>
        private IPoint ReadPointText(IList tokens) 
        {
            string nextToken = GetNextEmptyOrOpener(tokens);
            if (nextToken.Equals("EMPTY")) 
                return geometryFactory.CreatePoint((ICoordinate) null);
            IPoint point = geometryFactory.CreatePoint(GetPreciseCoordinate(tokens, false));
            GetNextCloser(tokens);
            return point;
        }

        /// <summary>
        /// Creates a <c>LineString</c> using the next token in the stream.
        /// </summary>
        /// <param name="tokens">
        /// Tokenizer over a stream of text in Well-known Text
        /// format. The next tokens must form a &lt;LineString Text.
        /// </param>
        /// <returns>
        /// A <c>LineString</c> specified by the next
        /// token in the stream.</returns>
        private ILineString ReadLineStringText(IList tokens) 
        {
            return geometryFactory.CreateLineString(GetCoordinates(tokens, false));
        }

        /// <summary>
        /// Creates a <c>LinearRing</c> using the next token in the stream.
        /// </summary>
        /// <param name="tokens">
        /// Tokenizer over a stream of text in Well-known Text
        /// format. The next tokens must form a &lt;LineString Text.
        /// </param>
        /// <returns>A <c>LinearRing</c> specified by the next
        /// token in the stream.</returns>
        private ILinearRing ReadLinearRingText(IList tokens)
        {
      return geometryFactory.CreateLinearRing(GetCoordinates(tokens, false));
        }

        /// <summary>
        /// Creates a <c>MultiPoint</c> using the next token in the stream.
        /// </summary>
        /// <param name="tokens">
        /// Tokenizer over a stream of text in Well-known Text
        /// format. The next tokens must form a &lt;MultiPoint Text.
        /// </param>
        /// <returns>
        /// A <c>MultiPoint</c> specified by the next
        /// token in the stream.</returns>
        private IMultiPoint ReadMultiPointText(IList tokens) 
        {
            return geometryFactory.CreateMultiPoint(ToPoints(GetCoordinates(tokens, true)));
        }

        /// <summary> 
        /// Creates an array of <c>Point</c>s having the given <c>Coordinate</c>s.
        /// </summary>
        /// <param name="coordinates">
        /// The <c>Coordinate</c>s with which to create the <c>Point</c>s
        /// </param>
        /// <returns>
        /// <c>Point</c>s created using this <c>WKTReader</c>
        /// s <c>GeometryFactory</c>.
        /// </returns>
        private IPoint[] ToPoints(ICoordinate[] coordinates) 
        {
            List<IPoint> points = new List<IPoint>();
            for (int i = 0; i < coordinates.Length; i++) 
                points.Add(geometryFactory.CreatePoint(coordinates[i]));            
            return points.ToArray();
        }
        
        /// <summary>  
        /// Creates a <c>Polygon</c> using the next token in the stream.
        /// </summary>
        /// <param name="tokens">
        /// Tokenizer over a stream of text in Well-known Text
        /// format. The next tokens must form a Polygon Text.
        /// </param>
        /// <returns>
        /// A <c>Polygon</c> specified by the next token
        /// in the stream.        
        /// </returns>
        private IPolygon ReadPolygonText(IList tokens) 
        {
            string nextToken = GetNextEmptyOrOpener(tokens);
            if (nextToken.Equals("EMPTY")) 
                return geometryFactory.CreatePolygon(
                    geometryFactory.CreateLinearRing(new ICoordinate[] { } ), new ILinearRing[] { } );

            List<ILinearRing> holes = new List<ILinearRing>();
            ILinearRing shell = ReadLinearRingText(tokens);
            nextToken = GetNextCloserOrComma(tokens);
            while (nextToken.Equals(",")) 
            {
                ILinearRing hole = ReadLinearRingText(tokens);
                holes.Add(hole);
                nextToken = GetNextCloserOrComma(tokens);
            }
            return geometryFactory.CreatePolygon(shell, holes.ToArray());
        }

        /// <summary>
        /// Creates a <c>MultiLineString</c> using the next token in the stream.
        /// </summary>
        /// <param name="tokens">
        /// Tokenizer over a stream of text in Well-known Text
        /// format. The next tokens must form a MultiLineString Text.
        /// </param>
        /// <returns>
        /// A <c>MultiLineString</c> specified by the
        /// next token in the stream.</returns>
        private IMultiLineString ReadMultiLineStringText(IList tokens) 
        {
            string nextToken = GetNextEmptyOrOpener(tokens);
            if (nextToken.Equals("EMPTY")) 
                return geometryFactory.CreateMultiLineString( new ILineString[] { } );

            List<ILineString> lineStrings = new List<ILineString>();
            ILineString lineString = ReadLineStringText(tokens);
            lineStrings.Add(lineString);
            nextToken = GetNextCloserOrComma(tokens);
            while (nextToken.Equals(",")) 
            {
                lineString = ReadLineStringText(tokens);
                lineStrings.Add(lineString);
                nextToken = GetNextCloserOrComma(tokens);
            }            
            return geometryFactory.CreateMultiLineString(lineStrings.ToArray());
        }

        /// <summary>  
        /// Creates a <c>MultiPolygon</c> using the next token in the stream.
        /// </summary>
        /// <param name="tokens">Tokenizer over a stream of text in Well-known Text
        /// format. The next tokens must form a MultiPolygon Text.
        /// </param>
        /// <returns>
        /// A <c>MultiPolygon</c> specified by the next
        /// token in the stream, or if if the coordinates used to create the
        /// <c>Polygon</c> shells and holes do not form closed linestrings.</returns>
        private IMultiPolygon ReadMultiPolygonText(IList tokens) 
        {
            string nextToken = GetNextEmptyOrOpener(tokens);
            if (nextToken.Equals("EMPTY")) 
                return geometryFactory.CreateMultiPolygon(new IPolygon[]{});

            List<IPolygon> polygons = new List<IPolygon>();
            IPolygon polygon = ReadPolygonText(tokens);
            polygons.Add(polygon);
            nextToken = GetNextCloserOrComma(tokens);
            while (nextToken.Equals(",")) 
            {
                polygon = ReadPolygonText(tokens);
                polygons.Add(polygon);
                nextToken = GetNextCloserOrComma(tokens);
            }            
            return geometryFactory.CreateMultiPolygon(polygons.ToArray());
        }

        /// <summary>
        /// Creates a <c>GeometryCollection</c> using the next token in the
        /// stream.
        /// </summary>
        /// <param name="tokens">
        /// Tokenizer over a stream of text in Well-known Text
        /// format. The next tokens must form a &lt;GeometryCollection Text.
        /// </param>
        /// <returns>
        /// A <c>GeometryCollection</c> specified by the
        /// next token in the stream.</returns>
        private IGeometryCollection ReadGeometryCollectionText(IList tokens) 
        {
            string nextToken = GetNextEmptyOrOpener(tokens);
            if (nextToken.Equals("EMPTY")) 
                return geometryFactory.CreateGeometryCollection(new IGeometry[] { } );

            List<IGeometry> geometries = new List<IGeometry>();
            IGeometry geometry = ReadGeometryTaggedText(tokens);
            geometries.Add(geometry);
            nextToken = GetNextCloserOrComma(tokens);
            while (nextToken.Equals(",")) 
            {
                geometry = ReadGeometryTaggedText(tokens);
                geometries.Add(geometry);
                nextToken = GetNextCloserOrComma(tokens);
            }            
            return geometryFactory.CreateGeometryCollection(geometries.ToArray());
        }        
    }    
}
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.