Class: RGeo::CoordSys::CS::VerticalDatum

Inherits:
Datum show all
Defined in:
lib/rgeo/coord_sys/cs/entities.rb

Overview

OGC spec description

Procedure used to measure vertical distances.

Instance Attribute Summary

Attributes inherited from Datum

#datum_type

Attributes inherited from Info

#abbreviation, #alias, #authority, #authority_code, #name, #remarks

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Datum

#initialize

Methods inherited from Info

#extension, #initialize

Methods inherited from Base

#encode_with, #eql?, #hash, #init_with, #inspect, #marshal_dump, #marshal_load, #to_s, #to_wkt

Constructor Details

This class inherits a constructor from RGeo::CoordSys::CS::Datum

Class Method Details

.create(name, datum_type, *optional) ⇒ Object

Create a VerticalDatum given a name and a datum type code. You may also provide the optional parameters specified by the Info interface.



747
748
749
# File 'lib/rgeo/coord_sys/cs/entities.rb', line 747

def create(name, datum_type, *optional)
  new(name, datum_type, *optional)
end

Instance Method Details

#wkt_typenameObject



738
739
740
# File 'lib/rgeo/coord_sys/cs/entities.rb', line 738

def wkt_typename
  "VERT_DATUM"
end