Sha256: 992329dd47d6cd13c3ed064cb99a7cdd042d9cde34ea8fb55c9b4b85c8debb06
Contents?: true
Size: 585 Bytes
Versions: 3
Compression:
Stored size: 585 Bytes
Contents
module GeoRuby module SimpleFeatures # indicates the presence of Z coordinates in EWKB strings Z_MASK = 0x80000000 # indicates the presence of M coordinates in EWKB strings. M_MASK = 0x40000000 # indicate the presence of a SRID in EWKB strings. SRID_MASK = 0x20000000 # GeoRSS namespace GEORSS_NS = 'http://www.georss.org/georss' # GML Namespace GML_NS = 'http://www.opengis.net/gml' # W3CGeo Namespace W3CGEO_NS = 'http://www.w3.org/2003/01/geo/wgs84_pos#' # KML Namespace KML_NS = 'http://earth.google.com/kml/2.1' end end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
geekdaily-georuby-2.6.0 | lib/geo_ruby/simple_features/helper.rb |
georuby-2.5.2 | lib/geo_ruby/simple_features/helper.rb |
georuby-2.5.1 | lib/geo_ruby/simple_features/helper.rb |