A one-dimensional coordinate system suitable for vertical measurements.
Gets the vertical datum, which indicates the measurement method.
Gets the units used along the vertical axis. The vertical units must be the same as the CS_CoordinateSystem units.
Create a VerticalCoordinateSystem given a name, a VerticalDatum, a LinearUnit, and an AxisInfo. The AxisInfo is optional and may be nil. You may also provide the optional parameters specified by the Info interface.
# File lib/rgeo/coord_sys/cs/entities.rb, line 1384 def create(name_, vertical_datum_, vertical_unit_, axis_, *optional_) new(name_, vertical_datum_, vertical_unit_, axis_, *optional_) end
Implements RGeo::CoordSys::CS::CoordinateSystem#get_axis
# File lib/rgeo/coord_sys/cs/entities.rb, line 1360 def get_axis(index_) @axis end
Implements RGeo::CoordSys::CS::CoordinateSystem#get_units
# File lib/rgeo/coord_sys/cs/entities.rb, line 1353 def get_units(index_) @vertical_unit end