measurements.csv

measurements.csv is a tabular data ressources from a GeoLocator Data Package containing the raw data from the sensors of all tag.

Compared to most other data structure, measurements combines all sensors and all tag in a single table!

Measurements

Source: measurements-table-schema.json

Name Definition Type
tag_id*

Unique identifier of the tag. Foreign key to tags.tag_id.

Constraints
  • required: true

Example: 18LX

string
sensor*

Sensor type.

Constraints
  • required: true
  • enum: light, pressure, activity, pitch, temperature_internal, temperature_external, acceleration_x, acceleration_y, acceleration_z, magnetic_x, magnetic_y, magnetic_z

Example: pressure

string
datetime*

Date and time of the measurement. Formatted as an ISO 8601 string with timezone designator YYYY-MM-DDThh:mm:ssZ.

Constraints
  • required: true

Example: 2020-04-01T22:00:00Z

datetime
value*

Value of the measurement taken by the sensor

Constraints
  • required: true

Example: 12.3

number
label

Labeling of the pressure and acceleration data according to the labeling chapter of the GeoPressureManual

Constraints
  • required: false
  • pattern: ^(flight|discard|elev_\d+|)$

Example: elev_23

string