node_type Derived Type

type, public :: node_type

Sensor node type. Uses lon-lat order.


Components

Type Visibility Attributes Name Initial
character(len=NODE_ID_LEN), public :: id = ' '

Node id (-0-9A-Z_a-z).

character(len=NODE_NAME_LEN), public :: name = ' '

Node name.

character(len=NODE_META_LEN), public :: meta = ' '

Additional description text (optional).

real(kind=r8), public :: x = 0.0_r8

Local x or easting, usually in metres (optional).

real(kind=r8), public :: y = 0.0_r8

Local y or northing, usually in metres (optional).

real(kind=r8), public :: z = 0.0_r8

Local z or elevation, usually in metres (optional).

real(kind=r8), public :: lon = 0.0_r8

Longitude in degrees (optional).

real(kind=r8), public :: lat = 0.0_r8

Latitude in degrees (optional).

real(kind=r8), public :: alt = 0.0_r8

Altitude or elevation in metres (optional).