Sha256: 31a97de88d6e48a40c8acab59f78484c7885d59bbdee22670d8694da91c99255
Contents?: true
Size: 1.35 KB
Versions: 10
Compression:
Stored size: 1.35 KB
Contents
# ----------------------------------------------------------------------------- # # Well-known representation for RGeo # # ----------------------------------------------------------------------------- module RGeo # This module contains implementations of the OpenGIS well-known # representations: the WKT (well-known text representation) and the # WKB (well-known binary representation), as defined in the Simple # Features Specification, version 1.1. Facilities are provided to # serialize any geometry into one of these formats, and to parse a # serialized string back into a geometry. Support is also provided for # the common extensions to these formats-- notably, the EWKT and EWKB # formats used by PostGIS. # # To serialize a geometry into WKT (well-known text) format, use # the WKRep::WKTGenerator class. # # To serialize a geometry into WKB (well-known binary) format, use # the WKRep::WKBGenerator class. # # To parse a string in WKT (well-known text) format back into a # geometry object, use the WKRep::WKTParser class. # # To parse a byte string in WKB (well-known binary) format back into a # geometry object, use the WKRep::WKBParser class. module WKRep end end # Implementation files require "rgeo/wkrep/wkt_parser" require "rgeo/wkrep/wkt_generator" require "rgeo/wkrep/wkb_parser" require "rgeo/wkrep/wkb_generator"
Version data entries
10 entries across 10 versions & 2 rubygems