class RGeo::CoordSys::CS::ProjectionParameter

OGC spec description

A named projection parameter value. The linear units of parameters’ values match the linear units of the containing projected coordinate system. The angular units of parameter values match the angular units of the geographic coordinate system that the projected coordinate system is based on.

Attributes

name[R]

The parameter name.

value[R]

The parameter value.

Public Class Methods

create(name_, value_) click to toggle source

Create a parameter given the name and value.

# File lib/rgeo/coord_sys/cs/entities.rb, line 386
def create(name_, value_)
  new(name_, value_)
end