pressurepaths.csv
A GeoPressureR pressurepath contains ERA5 variables along the bird trajectory at hourly intervals, using the exact bird location (including flight segments). Read more about pressurepaths in the GeoPressureManual
Similarly to path, there are 4 pressurepath types: tag, most_likely, simulation, and geopressureviz. See pressurepaths.type for more details.
pressurepath should be used in combination with staps and paths. Joins are performed on tag_id and, for stationary rows, stap_id.
Only tag_id is defined as a strict foreign key here. stap_id can be decimal during migration segments, so it cannot be enforced as a strict foreign key to staps in all rows.
The definition below does not list ERA5 variables, which can (and should!) be added to the table as additional columns (e.g., 'altitude' or 'surface_pressure'). Read more about these variables in the documentation of pressurepath_create().
Pressurepaths
Source:
pressurepaths-table-schema.json
| Name | Definition | Type |
|---|---|---|
tag_id*
|
Unique identifier of the tag. Foreign key to
Example: |
string |
datetime*
|
Date and time of the pressure measurement. Formatted as an ISO 8601 string with timezone designator
Example: |
datetime |
stap_id*
|
Identifier of the stationary-period index for the trajectory. Integer values correspond to
Example: |
number |
type*
|
One of:
Example: |
string |
lat*
|
Latitude of the trajectory position at this timestamp. Constraints
Example: |
number |
lon*
|
Longitude of the trajectory position at this timestamp. Constraints
Example: |
number |
j
|
Only useful for
Example: |
integer |