# File lib/geo_ruby/simple_features/ewkt_parser.rb, line 30
      def initialize(factory)
        @factory = factory
        @parse_options ={
          "POINT" => method(:parse_point),
          "LINESTRING" => method(:parse_line_string),
          "POLYGON" => method(:parse_polygon),
          "MULTIPOINT" => method(:parse_multi_point),
          "MULTILINESTRING" => method(:parse_multi_line_string),
          "MULTIPOLYGON" => method(:parse_multi_polygon),
          "GEOMETRYCOLLECTION" => method(:parse_geometry_collection)
        }
      end