knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  warning = FALSE,
  message = FALSE
)

Aquatic animal tracking data from the European Tracking Network.

How to interpret this dataset

Query options

Available columns

Click to see all the columns of "Detections"
  • Transmitter: Transmitter full-id (including both protocol and transmitter ID)
  • Transmitter_serial: Serial number of the transmitter.
  • Sensor_value: Value recorded by the tag sensor.
  • Sensor_unit: Unit of measured sensor value.
  • Station_name: Name of the station where the deployment of the receiver takes place. Related to a specific latitude and longitude.
  • Datetime: Date and time at which the tagged animal was detected at the receiver. Information from detection file.
  • Id_pk: Technical identifier of the detection record in the database.
  • Qc_flag: Identifies whether there are quality check issues for the given detection.
  • File: Name of the detection file.
  • Deployment_fk: Foreign key linked to the deployment information.
  • Scientific_name: Scientific name of the animal that carries the tag.
  • Location_name: Name of detection location.
  • Deployment_station_name: Name of the station where the deployment of the receiver takes place. Related to a specific latitude and longitude.
  • Deploy_date_time: Date and time that the equipment was deployed, in 24-hour UTC. Corresponds to the time of the captured waypoint. Datetime fields should follow the ISO-8601 format (e.g. 2017-01-01T12:07:23Z)
  • Deployment_type: Refers to the context. Which technology type is used.
  • Animal_project_name: Name of the animal project linked to this detection.
  • Animal_project_code: Code of the animal project linked to this detection.
  • Animal_moratorium: Specifies whether data from the animal project is under moratorium.
  • Network_project_name: Name of the network project linked to this detection.
  • Network_project_code: Code of the network project linked to this detection.
  • Network_moratorium: Specifies whether data from the network project is under moratorium.
  • Signal_to_noise_ratio: Signal-to-noise ratio. This is the difference between the background noise level and the signal level. Info comes from detection file.
  • Detection_file_id: ID from the detection file.
  • Tag_sensor_type: What type of sensor (pressure, acceleration).
  • Tag_intercept: Intercept needed to calculate the sensor value of the tag from the raw value.
  • Tag_slope: Slope needed to calculate the sensor value of the tag from the raw value.
  • Sensor_value_depth_meters: Calculated depth of the sensor in meters (based on raw value slope and intercept).
  • Tag_owner_organization: Institution that owns the tag.
  • Animal_id_pk: Technical identifier of the animal record in the database.
  • Animal_common_name: Animal species common name (not scientific name).
  • Animal_sex: Sex of the animal.
  • Deployment_lat: Latitude of the deployment in decimal degrees, WGS84. Note: in the southern hemisphere all latitudes must be negative. Format: ddd.ddddd; as in: 2.59020.
  • Deployment_long: Longitude of the deployment in decimal degrees, WGS84. Note: in the western hemisphere all longitudes must be negative. Format: dd.ddddd; as in: 51.36324.
  • Sensor_value_acceleration: Value recorded by the acceleration sensor.
  • Sensor_value_temperature: Value recorded by the temperature sensor.
  • Tag_fk: Foreign key linked to the tag.
  • Animal_id: Foreign Key linked to the Animal_ID.

Abstract

# Get the abstract and/or description from IMIS and print here
library(jsonlite)

dasid <- fromJSON("https://www.vliz.be/en/imis?module=dataset&dasid=5912&show=json")

abstract <- dasid[["datasetrec"]][["EngAbstract"]]
description <- dasid[["datasetrec"]][["EngDescr"]]

if (is.null(abstract) & is.null(description)){

} else if(is.null(abstract) & !is.null(description)){
  out <- description
} else if(!is.null(abstract) & is.null(description)){
  out <- abstract
} else if(!is.null(abstract) & !is.null(description)){
  out <- paste0(abstract, "</br></br>", description)
}

cat(out)

The ETN Data Explorer provides a set of functions to access the aquatic animal tracking data and metadata linked to the European Tracking Network (ETN). As the access to data is linked to specific user profiles, keep in mind that the results can be different for other users and login is needed to access data under moratorium.

How to cite these data

library(jsonlite)

# Set base url
url <- "https://www.vliz.be/en/imis?module=dataset&dasid=5912"
dasid <- fromJSON(paste0(url, "&show=json"))

# Build citation. Get active DOI.
citation <- dasid[["datasetrec"]][["Citation"]]
citation <- paste0("> ", citation, " ", url, 
                   ". Accessed through the LifeWatch Data Explorer / lwdataexplorer R package.")

# Get license
license <- dasid[["datasetrec"]][["AccConstrDisplay"]]
cat(citation)
cat(paste0("<b>Availability:</b>", license))

Please acknowledge as: This work makes use of the LifeWatch observation data and infrastructure (provided by the ETN partners) funded by Research Foundation - Flanders (FWO) as part of the Belgian contribution to LifeWatch.

These data are also available in the R language with the lwdataxplorer package.



lifewatch/lwdataexplorer documentation built on Aug. 24, 2024, 12:35 a.m.